1. 02 Jul, 2004 37 commits
  2. 01 Jul, 2004 3 commits
    • Matt Domsch's avatar
      [PATCH] EDD: x86-64 build fix · 004a3668
      Matt Domsch authored
      On Wed, Jun 30, 2004 at 01:22:21AM -0400, Jeff Garzik wrote:
      >   CC      arch/x86_64/kernel/setup.o
      > arch/x86_64/kernel/setup.c: In function `copy_edd':
      > arch/x86_64/kernel/setup.c:415: error: `EDD_MBR_SIGNATURE' undeclared=20
      > (first use in this function)
      > arch/x86_64/kernel/setup.c:415: error: (Each undeclared identifier is=20
      > reported only once
      > arch/x86_64/kernel/setup.c:415: error: for each function it appears in.)
      > arch/x86_64/kernel/setup.c:417: error: `EDD_MBR_SIG_NR' undeclared=20
      > (first use in this function)
      > make[1]: *** [arch/x86_64/kernel/setup.o] Error 1
      > make: *** [arch/x86_64/kernel] Error 2
      
      Arrgh.  On i386 it's in include/asm-i386/setup.h  On x86_64 it
      belongs in include/asm-x86_64/bootsetup.h.
      
      Patch below defines EDD_MBR_SIG_NR and EDD_MBR_SIGNATURE on x86_64.
      Signed-off-by: default avatarMatt_Domsch <Matt_Domsch@dell.com>
      004a3668
    • David S. Miller's avatar
      Merge davem@nuts.davemloft.net:/disk1/BK/net-2.6 · bf5c4064
      David S. Miller authored
      into kernel.bkbits.net:/home/davem/net-2.6
      bf5c4064
    • Stephen Hemminger's avatar
      [TCP]: TCP acts like it is always out of memory. · 90d90ae3
      Stephen Hemminger authored
      Current 2.6.7 tree acts as if it is alway under memory pressure because
      a recent change did a s/tcp_memory_pressure/tcp_prot.memory_pressure/.
      The problem is tcp_prot.memory_pressure is a pointer, so it is always non-zero!
      
      Rather than using *tcp_prot.memory_pressure, just go back to looking at
      tcp_memory_pressure.
      Signed-off-by: default avatarStephen Hemminger <shemminger@osdl.org>
      Signed-off-by: default avatarDavid S. Miller <davem@redhat.com>
      90d90ae3