ChangeSet@1.2053, 2005-02-15 18:38:35-08:00, benh@kernel.crashing.org
  [PATCH] radeonfb: Fix hang on boot with some laptops
  
  It appears that access to the PLL registers of the radeon chip is
  unreliable while the card is in "legacy VGA" text mode. I don't have a
  good explanation yet, it might be the BIOS mucking around behind my
  back. This fixes the lockup by moving the code that enables/disables the
  dynamic power management to after the mode is set.
  
  I'm still waiting for a proper explanation from ATI...
  
  Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
  Signed-off-by: Linus Torvalds <torvalds@osdl.org>

ChangeSet@1.2046.1.7, 2005-02-15 14:51:04-08:00, yoshfuji@linux-ipv6.org
  [IPV6]: Fix IPV6_PKTINFO et al. handling in udpv6_recvmsg().
  
  CMSG reception needs to occur even if msg_name is not
  set.
  
  Signed-off-by: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.2046.1.6, 2005-02-15 14:23:32-08:00, herbert@gondor.apana.org.au
  [NET]: Add netdev argument to dst ifdown.
  
  This patch adds a net_device argument to ifdown.  After all,
  it's a bit silly to notify someone of an ifdown event without
  telling them what which device it was for :)
  
  Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.2046.1.5, 2005-02-15 14:22:41-08:00, herbert@gondor.apana.org.au
  [IPSEC]: Move dst->child loop from dst_ifdown to xfrm_dst_ifdown.
  
  Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.2051, 2005-02-15 13:04:21-08:00, torvalds@ppc970.osdl.org
  Input: fix ALPS protocol validation rules
  
  We checked the wrong byte, causing the touchpad
  to lose sync if an absolute packet is received
  after a relative packet with negative Y displacement.
  
  Signed-off-by: Dmitry Torokhov <dtor_core@ameritech.net>
  Signed-off-by: Linus Torvalds <torvalds@osdl.org>

ChangeSet@1.2050, 2005-02-15 12:59:34-08:00, torvalds@ppc970.osdl.org
  Fix bogus opost buffer size check
  
  Noted while going through the n_tty code: that buffer check
  used to check against the size of the temporary kernel buffer,
  but since the tty layer was changed to use kernel buffers
  though-out, the kernel buffer array became just a pointer, and
  the check was limiting the opost blocksize to the size of a
  pointer, which makes no sense.
  
  Just remove it, since now the whole buffer is always in kernel
  space.

ChangeSet@1.2046.2.1, 2005-02-15 11:52:29-08:00, torvalds@ppc970.osdl.org
  Limit tty IO chunking to 2kB
  
  The NTTY code can get confused by 4kB chunks, apparently
  because n_tty_receive_room() will claim to have more room
  than n_tty_receive_buf() can actually accept.
  
  Until somebody figures out what the real n_tty_receive_room()
  logic should be, let's just limit it to a safe 2kB.
  
  Thanks go to Andreas Schwab for finding a test-case.

ChangeSet@1.2046.1.4, 2005-02-15 09:53:23-08:00, olh@suse.de
  [NET]: Fix socket.h comment typo.
  
  Signed-off-by: Olaf Hering <olh@suse.de>
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.2046.1.3, 2005-02-15 09:28:16-08:00, ralf@linux-mips.org
  [NETROM/ROSE]: Use netdev_priv()
  
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.2046.1.2, 2005-02-15 08:49:36-08:00, davem@nuts.davemloft.net
  [TG3]: Update driver version and reldate.
  
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.2046.1.1, 2005-02-15 08:48:26-08:00, davem@nuts.davemloft.net
  [TG3]: Always check tg3_readphy() return value.
  
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.2048, 2005-02-15 07:41:38-08:00, davem@nuts.davemloft.net
  [SPARC]: Fix cg3 fb blanking.
  
  cg3_blank() needs to clear the video enable register bit
  to blank the screen, not set it.
  
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.2039.3.1, 2005-02-14 14:40:27-08:00, davem@nuts.davemloft.net
  [COMPAT]: TUNSETIFF needs to copy back data after ioctl.
  
  It is defined as a _IOW() which is erroneous, it should
  have been defined as _IORW() but that cannot be changed
  now without breaking all existing applications using this
  ioctl.
  
  Signed-off-by: David S. Miller <davem@davemloft.net>

ChangeSet@1.2039.2.5, 2005-02-14 14:21:09-08:00, eike-kernel@sf-tec.de
  [PATCH] make ACPI_BLACKLIST_YEAR depend on ACPI_INTERPRETER
  
  this oneliner fixes the situation that I can enter a year to blacklist
  ACPI devices even if ACPI is completely disabled.
  
  Signed-off-by: Rolf Eike Beer <eike-kernel@sf-tec.de>
  Signed-off-by: Linus Torvalds <torvalds@osdl.org>

ChangeSet@1.2039.2.4, 2005-02-14 14:20:06-08:00, hch@lst.de
  [PATCH] block new writers on frozen filesystems
  
  When the lockfs patches went in an important bit got lost, the call in
  generic_file_write to put newly incoming writers to sleep when a filesystem
  is frozen.  Nathan added back the call in the now separate XFS write patch,
  and the patch for the generic code is below:
  
  Signed-off-by: Andrew Morton <akpm@osdl.org>
  Signed-off-by: Linus Torvalds <torvalds@osdl.org>

ChangeSet@1.2039.2.3, 2005-02-14 14:19:53-08:00, minyard@acm.org
  [PATCH] IPMI: Fix LAN bridging
  
  The size of LAN bridged messages was not being returned properly from the
  function that calculated address sizes.
  
  Signed-off-by: Corey Minyard <minyard@acm.org>
  Signed-off-by: Andrew Morton <akpm@osdl.org>
  Signed-off-by: Linus Torvalds <torvalds@osdl.org>

ChangeSet@1.2039.2.2, 2005-02-14 14:19:40-08:00, olh@suse.de
  [PATCH] ppc64: remove extra whitespace before preprocessor token
  
  unifdef complains about the space before #ifndef.
  
  Signed-off-by: Olaf Hering <olh@suse.de>
  Signed-off-by: Andrew Morton <akpm@osdl.org>
  Signed-off-by: Linus Torvalds <torvalds@osdl.org>

ChangeSet@1.2039.2.1, 2005-02-14 14:19:26-08:00, herbert@gondor.apana.org.au
  [PATCH] ISDN locking fix
  
  isdn_net_get_locked_lp is doing a local_bh_enable with hard IRQs disabled. 
  This is not allowed.
  
  The following patch fixes the problem by removing the unnecessary
  local_bh_enable while the hard IRQs are disabled.
  
  Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
  Signed-off-by: Andrew Morton <akpm@osdl.org>
  Signed-off-by: Linus Torvalds <torvalds@osdl.org>

ChangeSet@1.2044, 2005-02-14 18:09:02+00:00, rmk@flint.arm.linux.org.uk
  [ARM] Fix sparse warnings for Integrator builds.
  
  Add some missing __iomem annotations for Integrator machines.
  
  Signed-off-by: Russell King <rmk@arm.linux.org.uk>

ChangeSet@1.2043, 2005-02-14 17:32:31+00:00, rmk@flint.arm.linux.org.uk
  [ARM] Fix SA1111 and PXA iomem sparse warnings.
  
  This adds some missing annotations found by making the raw IO
  operations check their pointer type.
  
  Signed-off-by: Russell King <rmk@arm.linux.org.uk>

ChangeSet@1.2042, 2005-02-14 16:59:51+00:00, rmk@flint.arm.linux.org.uk
  [ARM] Add missing __user annotations to sys_clone()
  
  Signed-off-by: Russell King <rmk@arm.linux.org.uk>

ChangeSet@1.2041, 2005-02-14 16:05:37+00:00, ben-linux@org.rmk.(none)
  [ARM PATCH] 2481/1: IXP2000 - replace sti/cli with local_irq{save,restore}
  
  Patch from Ben Dooks
  
  Fix the following:
  arch/arm/mach-ixp2000/pci.c:148: warning: `cli' is deprecated (declared at include/linux/interrupt.h:65)
  arch/arm/mach-ixp2000/pci.c:161: warning: `sti' is deprecated (declared at include/linux/interrupt.h:69)
  arch/arm/mach-ixp2000/pci.c:178: warning: `cli' is deprecated (declared at include/linux/interrupt.h:65)
  arch/arm/mach-ixp2000/pci.c:191: warning: `sti' is deprecated (declared at include/linux/interrupt.h:69)
  By replacing cli() wht local_irq_save() and sti() with local_irq_restore().
  This patch has not been tested.
  
  Signed-off-by: Ben Dooks
  Signed-off-by: Russell King

ChangeSet@1.2040, 2005-02-14 15:58:47+00:00, ben-linux@org.rmk.(none)
  [ARM PATCH] 2480/1: IXP4XX - cleanup resource for i2c controller
  
  Patch from Ben Dooks
  
  Fix the following:
  arch/arm/mach-ixp4xx/common.c:305: warning: initialization from incompatible pointer type
  
  Signed-off-by: Ben Dooks
  Signed-off-by: Russell King

ChangeSet@1.2035.1.3, 2005-02-13 20:33:48+00:00, tglx@de.rmk.(none)
  [ARM PATCH] 2478/1: Remove NULL initializers
  
  Patch from Thomas Gleixner
  
  Remove NULL initializers of static variables.
  
  Signed-off-by: Thomas Gleixner
  Signed-off-by: Russell King

ChangeSet@1.2035.1.2, 2005-02-13 20:09:13+00:00, tglx@de.rmk.(none)
  [ARM PATCH] 2476/1: Fix compile for shannon
  
  Patch from Thomas Gleixner
  
  Trivial build fix for shannon platform
  
  Signed-off-by: Thomas Gleixner
  Signed-off-by: Russell King

ChangeSet@1.2035.1.1, 2005-02-13 20:02:48+00:00, tglx@de.rmk.(none)
  [ARM PATCH] 2474/1: Fix compile for badge4
  
  Patch from Thomas Gleixner
  
  Trivial build fix for badge4 platform
  
  Signed-off-by: Thomas Gleixner
  Signed-off-by: Russell King

ChangeSet@1.2037, 2005-02-13 11:07:36-08:00, torvalds@ppc970.osdl.org
  Eicon driver: remove ^M for real this time.
  
  Really.

ChangeSet@1.2036, 2005-02-13 10:14:10-08:00, arjan@infradead.org
  [PATCH] Allow heap to be marked executable too
  
  This makes it possible to mark binaries to have both an executable stack
  and heap, allowing for a NX system to disable NX on a per-binary level.
  
  Signed-off-by: Arjan van de Ven <arjan@infradead.org>
  Signed-off-by: Linus Torvalds <torvalds@osdl.org>

ChangeSet@1.2018.3.3, 2005-02-13 12:53:23-05:00, mporter@kernel.crashing.org
  [PATCH] emac: fix mdio delay
  
  Fixes MDIO delay. Please apply.
  
  Signed-off-by: Ralph Siemsen <ralphs@netwinder.org>
  Signed-off-by: Matt Porter <mporter@kernel.crashing.org>
  Signed-off-by: Jeff Garzik <jgarzik@pobox.com>

ChangeSet@1.2018.3.2, 2005-02-13 12:53:11-05:00, mporter@kernel.crashing.org
  [PATCH] emac: fix jumbo frame support
  
  Fixes a bug in RX buffer allocation so that jumbo size skbs are
  allocated when the MTU size is changed. Also removes the deprecated
  restore_flags() call.  Please apply.
  
  Signed-off-by: Matt Porter <mporter@kernel.crashing.org>
  Signed-off-by: Jeff Garzik <jgarzik@pobox.com>

ChangeSet@1.2035, 2005-02-12 20:23:28-08:00, benh@kernel.crashing.org
  [PATCH] radeonfb: typos fixes
  
  The dynamic clock code in radeonfb comes almost as-is from X.org (where
  it was contributed by ATI). It has a few typos (wrong register access
  macros) that this patch fixes.
  
  Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
  Signed-off-by: Linus Torvalds <torvalds@osdl.org>

ChangeSet@1.2034, 2005-02-12 20:23:14-08:00, joe.korty@ccur.com
  [PATCH] memset argument order misuses
  
  A simple 'grep memset.*\<0);' shows argument order errors in several
  uses of memset.
  
  This grep was inspired by Al Viro's recent patch, megaraid_mbox fix,
  which fixed this problem in the megaraid driver.

ChangeSet@1.2033, 2005-02-12 18:58:36-08:00, torvalds@ppc970.osdl.org
  Linux 2.6.11-rc4
  TAG: v2.6.11-rc4