1. 18 Nov, 2005 38 commits
  2. 17 Nov, 2005 2 commits
    • Roman Zippel's avatar
      [NET]: Sanitize NET_SCHED protection in /net/sched/Kconfig · 05b8b0fa
      Roman Zippel authored
      On Thu, 17 Nov 2005, David Gómez wrote:
      
      > I found out that if i select NET_CLS_ROUTE4, save my changes and exit
      > menuconfig, execute again make menuconfig and go to QoS options, then the new
      > available options are visible. So menuconfig has some problem refreshing
      > contents :?
      
      No, they were there before too, but you have to go up one level to see 
      them.
      
      It's better in 2.6.15-rc1-git5, but the menu structure is still a little 
      messed up, the patch below properly indents all menu entries.
      Signed-off-by: default avatarRoman Zippel <zippel@linux-m68k.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      05b8b0fa
    • David S. Miller's avatar
      [LLC]: Fix compiler warnings introduced by TX window scaling changes. · 38199824
      David S. Miller authored
      Noticed by Olaf Hering.
      
      The comparisons want a u8 here (the data type on the left-hand branch
      is a u8 structure member, and the constant on the right-hand branch is
      "~((u8) 128)"), but C turns it into an integer so we get:
      
      net/llc/llc_c_ac.c: In function `llc_conn_ac_inc_npta_value':
      net/llc/llc_c_ac.c:998: warning: comparison is always true due to limited range of data type
      net/llc/llc_c_ac.c:999: warning: large integer implicitly truncated to unsigned type
      
      Fix this up by explicitly recasting the right-hand branch constant
      into a "u8" once more.
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      38199824