ChangeSet@1.2063, 2005-02-26 10:12:16-08:00, torvalds@ppc970.osdl.org
  Properly limit keyboard keycodes to KEY_MAX.
  
  It can only be set by root, but let's not tempt people to do
  things that can't work.

ChangeSet@1.2062, 2005-02-26 10:03:27-08:00, Andries.Brouwer@cwi.nl
  [PATCH] more apic.c
  
  setup_APIC_timer is only called in __init context and uses __initdata

ChangeSet@1.2061, 2005-02-26 10:03:13-08:00, Andries.Brouwer@cwi.nl
  [PATCH] __initdata in apic.c
  
  wait_timer_tick refers to the __init functions wait_8254_wraparound
  or wait_hpet_tick, hence must be __initdata.

ChangeSet@1.2060, 2005-02-26 10:02:59-08:00, Andries.Brouwer@cwi.nl
  [PATCH] remove __initdata in scsi_devinfo.c
  
  scsi_dev_flags is referred to in
  module_param_string(dev_flags, scsi_dev_flags, sizeof(scsi_dev_flags), 0);

ChangeSet@1.2059, 2005-02-26 10:02:45-08:00, Andries.Brouwer@cwi.nl
  [PATCH] __init in cfq-iosched.c
  
  cfq_init() calls __init cfq_slab_setup and hence must be __init itself
  
  also made it static

ChangeSet@1.2058, 2005-02-26 10:02:30-08:00, Andries.Brouwer@cwi.nl
  [PATCH] __devinitdata in parport_pc
  
  parport_init_mode is referred to in int __devinit sio_via_probe().

ChangeSet@1.2057, 2005-02-25 20:28:59-08:00, aurelien@aurel32.net
  [PATCH] USB: Fix usbfs regression
  
  I have just tested kernel version 2.6.11-rc5 and noticed it is not
  possible to do an USB transfer by submitting an URB to an output
  endpoint.  This breaks newest versions of libusb and thus SANE, gphoto2,
  and a lot of software.
  
  The bug was introduced in version 2.6.11-rc1 and is due to a wrong
  comparison. 
  
  Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
  Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
  Signed-off-by: Linus Torvalds <torvalds@osdl.org>

ChangeSet@1.2056, 2005-02-25 19:39:39-08:00, torvalds@ppc970.osdl.org
  Fix possible pty line discipline race.
  
  This ain't pretty. Real fix under discussion.

ChangeSet@1.2055, 2005-02-25 16:51:25-08:00, olh@suse.de
  [PATCH] Fix incorrect __init on 'modedb[]' array
  
  modedb can not be __init because fb_find_mode() (which is not __init)
  may get db == NULL.  fb_find_mode() is called from modules. 
  
  Signed-off-by: Olaf Hering <olh@suse.de>
  Signed-off-by: Linus Torvalds <torvalds@osdl.org>

ChangeSet@1.2053, 2005-02-25 14:17:57-08:00, akpm@osdl.org
  [PATCH] binfmt_elf build fix
  
  The cast to void still triggers the gcc "warning: ignoring return value"
  warning, which is dumb of it.  So ignore the return value differently.
  
  Signed-off-by: Andrew Morton <akpm@osdl.org>
  Signed-off-by: Linus Torvalds <torvalds@osdl.org>

ChangeSet@1.2052, 2005-02-25 14:17:43-08:00, gregkh@suse.de
  [PATCH] USB: fix bug in acm's open function
  
  Here's a patch for 2.6.11-rc5 that a lot of cdc-acm driver users are
  clamoring for.
  
  There's a bug introduced in a cleanup which will lead to a race making
  reopenings fail.  This fix is by Alexander Lykanov.
  
  Signed-off-by: Oliver Neukum <oliver@neukum.name>
  Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  Signed-off-by: Andrew Morton <akpm@osdl.org>
  Signed-off-by: Linus Torvalds <torvalds@osdl.org>

ChangeSet@1.2051, 2005-02-25 14:17:30-08:00, dhowells@redhat.com
  [PATCH] Make keyctl(KEYCTL_JOIN_SESSION_KEYRING) use the correct arg
  
  The attached patch makes keyctl() use the correct argument when invoking
  the KEYCTL_JOIN_SESSION_KEYRING function.
  
  I'm not sure how this evaded testing before, but I suspect the compiler was
  kind and made both argument registers hold the same value.
  
  Thanks to Kevin Coffman <kwc@citi.umich.edu> for spotting this.
  
  Signed-Off-By: David Howells <dhowells@redhat.com>
  Signed-off-by: Andrew Morton <akpm@osdl.org>
  Signed-off-by: Linus Torvalds <torvalds@osdl.org>

ChangeSet@1.2049.1.1, 2005-02-25 19:47:46+00:00, rmk@flint.arm.linux.org.uk
  [ARM] Fix dma_mmap() size argument.
  
  We were passing the size of the region in pages, where as
  remap_pfn_range expected the size in bytes.
  
  Signed-off-by: Russell King <rmk@arm.linux.org.uk>

ChangeSet@1.2050, 2005-02-25 08:48:33-08:00, david@gibson.dropbear.id.au
  [PATCH] ppc64: hugepage hash flushing bugfix
  
  This fixes a potentially bad (although very rarely triggered) bug in the
  ppc64 hugepage code.
  
  hpte_update() did not correctly calculate the address for hugepages, so
  pte_clear() (which we use for hugepage ptes as well as normal ones)
  would not correctly flush the hash page table entry.  Under the right
  circumstances this could potentially lead to duplicate hash entries,
  which is very bad.
  
  davem's upcoming patch to pass the virtual address directly to set_pte()
  and its ilk will obsolete this, but this is bad enough it should
  probably be fixed in the meantime.
  
  Signed-off-by: David Gibson <dwg@au1.ibm.com>
  Acked-by: William Irwin <wli@holomorphy.com>
  Signed-off-by: Linus Torvalds <torvalds@osdl.org>

ChangeSet@1.2035.21.6, 2005-02-23 20:02:03-08:00, davem@nuts.davemloft.net
  Merge bk://bk.skbuff.net:20611/linux-2.6-sysctl/
  into nuts.davemloft.net:/disk1/BK/net-2.6

ChangeSet@1.2035.21.5, 2005-02-23 19:59:02-08:00, robert.olsson@data.slu.se
  [PKTGEN]: reduce stack usage
  
  From Randy Dunlap
  
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.2035.21.4, 2005-02-23 19:50:04-08:00, laforge@netfilter.org
  [NETFILTER]: ipt_hashlimit rule load time race condition
  
  This is the best we've got: We cannot release and re-grab lock,
  since checkentry() is called before ip_tables.c grabs ipt_mutex.  
  We also cannot grab the hashtable spinlock, since htable_create will 
  call vmalloc, and that can sleep.  And we cannot just re-search
  the list of htable's in htable_create(), since then we would
  create duplicate proc files.
  
  Signed-off-by: Harald Welte <laforge@netfilter.org>
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.2035.21.3, 2005-02-23 19:48:15-08:00, robert.olsson@data.slu.se
  [PKTGEN]: Replace interruptible_sleep_on_timeout()
  
  From Nishanth Aravamudan <nacc@us.ibm.com>
  
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.2035.21.2, 2005-02-23 19:44:58-08:00, yoshfuji@linux-ipv6.org
  [IPV6]: Unregister per-device snmp6 proc entry earlier.
  
  Do it in addrconf_ifdown.  This fixes OOPSes on shutdown
  with 2.6.10
  
  Signed-off-by: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
  Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.2035.21.1, 2005-02-23 19:38:18-08:00, kaber@trash.net
  [NETFILTER]: Prevent NAT from seeing fragments
  
  The path for loopback is:
  LOCAL_OUT: conntrack defrags
  POST_ROUTING: conntrack refrags
  PRE_ROUTING: skip conntrack defrag because skb->nfct != NULL
  PRE_ROUTING: NAT gets hit by fragments
  
  Always defrag on loopback if NAT is compiled in.
  
  Signed-off-by: Patrick McHardy <kaber@trash.net>
  Acked-by: Rusty Russel <rusty@rustcorp.com.au>
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.2049, 2005-02-23 17:44:08-08:00, torvalds@ppc970.osdl.org
  Linux 2.6.11-rc5
  TAG: v2.6.11-rc5