ChangeSet@1.1578, 2004-10-26 18:22:14-02:00, marcelo@logos.cnet
    Jakub Bogusz: missing include in farsync WAN driver
  
    drivers/net/wan/farsync.c is missing <asm/io.h> include, which leads to
    unresolved symbols on some archs (e.g. alpha).

ChangeSet@1.1577, 2004-10-26 18:11:21-02:00, sandeen@sgi.com
  [PATCH] fix for large direct I/O

ChangeSet@1.1576, 2004-10-26 14:57:01-02:00, marcelo@logos.cnet
  Merge bk://kernel.bkbits.net/davem/net-2.4
  into logos.cnet:/home/marcelo/bk/linux-2.4

ChangeSet@1.1575, 2004-10-26 06:34:55-02:00, lkml@rtr.ca
  [PATCH] delkin_cb: new carbus IDE driver
  

ChangeSet@1.1570.1.6, 2004-10-25 22:11:49-07:00, davem@nuts.davemloft.net
  [CRYPTO]: Delete MODULE_ALIAS line.
  
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.1570.1.5, 2004-10-25 20:56:16-07:00, ruber@engr.es
  [CRYPTO]: Add Tnepres cipher support
  
  Signed-off-by: James Morris <jmorris@redhat.com>
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.1570.1.4, 2004-10-25 20:13:34-07:00, shemminger@osdl.org
  [PKT_SCHED]: netem: Use timer to handle packets not rescheduling
  
  Change the behaviour of netem's delayed packets queue to make it work better
  with TBF and other rate control disciplines.
  
  Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.1570.1.3, 2004-10-25 20:11:08-07:00, tgraf@suug.ch
  [PKT_SCHED]: Rename TCQ_F_INGRES to TCQ_F_INGRESS.
  
  This typo annoyned me several times by not showing up in greps.
  
  Signed-off-by: Thomas Graf <tgraf@suug.ch>
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.1570.1.2, 2004-10-25 20:05:02-07:00, arnouten@bzzt.net
  [TCP]: Add /proc/net/tcp{,6} layout documentation.
  
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.1557.1.5, 2004-10-25 16:36:48-07:00, davem@nuts.davemloft.net
  Merge http://linux-lksctp.bkbits.net/lksctp-2.4.work
  into nuts.davemloft.net:/disk1/BK/net-2.4

ChangeSet@1.1542.7.38, 2004-10-25 16:21:35-07:00, andrea@novell.com
  [NET]: Accept should return ENFILE not EMFILE.
  
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.1542.7.37, 2004-10-25 16:05:45-07:00, laforge@netfilter.org
  [NETFILTER]: fix ipt_ULOG bogus error messages
  
  Please apply the fix below, it addresses some bogus error messages
  ('error during NLMSG_PUT') that were printed because of a wrong
  calculation of the 'len' parameter to NLMSG_PUT().
  
  Signed-off-by: Harald Welte <laforge@netfilter.org>
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.1574, 2004-10-25 15:36:36-02:00, bunk@stusta.de
  [PATCH] add SCSI_SATA_ULI help text
  
   o [libata] add sata_uli driver for ULi (formerly ALi) SATA
  
  #include <no/help/text.h>
  
  
  Signed-off-by: Adrian Bunk <bunk@stusta.de>

ChangeSet@1.1573, 2004-10-23 09:40:13-02:00, paulkf@microgate.com
  [PATCH] serial receive lockup fix   
  
  Fix lockup caused by serial driver not clearing
  receive interrupt if flip buffer becomes full.
  
  Signed-off-by: Paul Fulghum <paulkf@microgate.com>

ChangeSet@1.1542.7.36, 2004-10-22 15:07:20-07:00, davem@nuts.davemloft.net
  [AF_PACKET]: Set VM_IO for mmap areas.
  
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.1542.7.35, 2004-10-22 15:03:48-07:00, tgraf@suug.ch
  [PKT_SCHED]: Avoid duplicated TCA_STATS TLVs for HTB and HFSC
  
  Backport of the equivalent 2.6 fixes.
  
  Qdiscs are not supposed to dump TCA_STATS, it is done in generic code part.
  
  Signed-off-by: Thomas Graf <tgraf@suug.ch>
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.1542.7.34, 2004-10-22 15:02:37-07:00, tgraf@suug.ch
  [PKT_SCHED]: u32: Remove unused hgenerator field in tc_u_hnode.
  
  Signed-off-by: Thomas Graf <tgraf@suug.ch>
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.1572, 2004-10-22 14:13:01-02:00, macro@linux-mips.org
  [PATCH] "console=" parameter ignored
  
  I've noticed that under specific circumstances the "console=" kernel
  parameter is ignored.  This happens when EARLY_PRINTK is enabled and the
  serial console is the only available.  In this case unregister_console()
  when called for the early console sets preferred_console back to -1
  replacing the value that was recorded by console_setup() -- the order of
  calls is as follows:
  
  1. register_console() -- for the early console,
  
  2. console_setup() -- recording the console index for the real console,
  
  3. unregister_console() -- for the early console, erasing the console
     index recorded above,
  
  4. register_console() -- for the real console, picking up the first device
     available, instead of the selected one.
  
  I've observed this problem with a DECstation system using ttyS3 -- its
  default console device from the firmware's point of view.
  
   The solution is to restore the setting of "console=" upon
  unregister_console().  Here is a patch that works for me -- run-time
  tested with a snapshot of 2.4.26.  I've prepared a coresponding patch for
  2.6, that I'll send separately.
  I've forgotten to sign it off, my apologies.
  
  Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org>
  TAG: v2.4.28-rc1