ChangeSet@1.1483, 2004-10-29 12:33:54-02:00, tgraf@suug.ch [PATCH] filemap.c compile fix Signed-off-by: Thomas Graf ChangeSet@1.1482, 2004-10-28 08:32:27-02:00, sezeroz@ttnet.net.tr [PATCH] 2.6 backport: tun sign mishandling tun.c sign mishandling already in 2.6 ChangeSet@1.1481, 2004-10-28 08:16:27-02:00, sezeroz@ttnet.net.tr [PATCH] 2.6 backport: binfmt_elf memleak fix error handling [3/10] binfmt_elf memleak, missing parts of Oleg's patch. in 2.6. Oleg Drokin, missing parts from the patch posted at http://marc.theaimsgroup.com/?l=linux-kernel&m=105103934631609&w=2 already in 2.6 ChangeSet@1.1480, 2004-10-28 07:46:08-02:00, ink@jurassic.park.msu.ru [PATCH] Alpha: fixes for bootp/bootpz targets - redefine "printk" as "srm_printk" for bootstrappers; - fix stack corruption problem with bootp/bootpz loaders and older SRM consoles. Ivan. ChangeSet@1.1449.1.129, 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 include, which leads to unresolved symbols on some archs (e.g. alpha). ChangeSet@1.1449.1.128, 2004-10-26 18:11:21-02:00, sandeen@sgi.com [PATCH] fix for large direct I/O ChangeSet@1.1449.1.127, 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.1449.1.126, 2004-10-26 06:34:55-02:00, lkml@rtr.ca [PATCH] delkin_cb: new carbus IDE driver ChangeSet@1.1449.47.6, 2004-10-25 22:11:49-07:00, davem@nuts.davemloft.net [CRYPTO]: Delete MODULE_ALIAS line. Signed-off-by: David S. Miller ChangeSet@1.1449.47.5, 2004-10-25 20:56:16-07:00, ruber@engr.es [CRYPTO]: Add Tnepres cipher support Signed-off-by: James Morris Signed-off-by: David S. Miller ChangeSet@1.1449.47.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 Signed-off-by: David S. Miller ChangeSet@1.1449.47.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 Signed-off-by: David S. Miller ChangeSet@1.1449.47.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 ChangeSet@1.1449.46.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.1449.39.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 ChangeSet@1.1449.39.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 Signed-off-by: David S. Miller ChangeSet@1.1449.1.125, 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 Signed-off-by: Adrian Bunk ChangeSet@1.1449.1.124, 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 ChangeSet@1.1449.39.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 ChangeSet@1.1449.39.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 Signed-off-by: David S. Miller ChangeSet@1.1449.39.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 Signed-off-by: David S. Miller ChangeSet@1.1449.1.123, 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 TAG: v2.4.28-rc1