]> git.ipfire.org Git - thirdparty/kernel/stable.git/log
thirdparty/kernel/stable.git
20 years ago[PATCH] r8169: receive descriptor length fix
shemminger@osdl.org [Sun, 13 Mar 2005 05:46:01 +0000 (21:46 -0800)] 
[PATCH] r8169: receive descriptor length fix

The status and received packets indication in the Rx descriptor ring
are not correctly reset when a descriptor is recycled.

Signed-off-by: Francois Romieu <romieu@fr.zoreil.com>
Signed-off-by: Chris Wright <chrisw@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
20 years ago[PATCH] PCI: fix hotplug double free
alexn@dsv.su.se [Sun, 13 Mar 2005 05:43:53 +0000 (21:43 -0800)] 
[PATCH] PCI: fix hotplug double free

[PATCH] PCI: fix hotplug double free

With the brackets missed out func could be freed twice.

Found by Coverity tool

Signed-off-by: Alexander Nyberg <alexn@dsv.su.se>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
20 years ago[PATCH] ppc32: trivial fix for e500 oprofile build
galak@freescale.com [Sun, 13 Mar 2005 05:42:42 +0000 (21:42 -0800)] 
[PATCH] ppc32: trivial fix for e500 oprofile build

Fix for trivial fix for 2.6.11 oprofile compilation on e500 based ppc.

Signed-off-by: Andy Fleming <afleming@freescale.com>
Signed-off-by: Kumar Gala <kumar.gala@freescale.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
20 years ago[PATCH] Put back tcp_timer_bug_msg[] symbol export.
davem@davemloft.net [Sun, 13 Mar 2005 05:41:54 +0000 (21:41 -0800)] 
[PATCH] Put back tcp_timer_bug_msg[] symbol export.

This wrecks the ipv6 modular build for a lot of people.
In fact, since I always build ipv6 modular I am surprised
I never hit this.  My best guess is that my compiler is
optimizing the reference away, but that can never be
depended upon and the symbol export really is needed.

[TCP]: Put back tcp_timer_bug_msg[] symbol export.

It is needed for tcp_reset_xmit_timer(), which is invoked by
tcp_prequeue() which is invoked from tcp_ipv6.c

Signed-off-by: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Chris Wright <chrisw@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
20 years ago[PATCH] Fix i2c messsage flags in video drivers
khali@linux-fr.org [Sun, 13 Mar 2005 05:40:46 +0000 (21:40 -0800)] 
[PATCH] Fix i2c messsage flags in video drivers

While working on the saa7110 driver I found a problem with the way
various video drivers (found on Zoran-based boards) prepare i2c messages
to be used by i2c_transfer. The drivers improperly copy the i2c client
flags as the message flags, while both sets are mostly unrelated. The
net effect in this case is to trigger an I2C block read instead of the
expected I2C block write. The fix is simply not to pass any flag,
because none are needed.

I think this patch qualifies hands down as a "critical bug fix" to be
included in whatever bug-fix-only trees exist these days. As far as I
can see, all Zoran-based boards are broken in 2.6.11 without this patch.

Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Chris Wright <chrisw@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
20 years ago[PATCH] ppc32: Compilation fixes for Ebony, Luan and Ocotea
Matt Porter [Sun, 13 Mar 2005 05:39:19 +0000 (21:39 -0800)] 
[PATCH] ppc32: Compilation fixes for Ebony, Luan and Ocotea

this patch fixes the problem, that the current kernel (linux-2.6.11-rc5)
could not be compiled, when "support for early boot texts over serial port"
(CONFIG_SERIAL_TEXT_DEBUG=y) is active.

Signed-off-by: Gerhard Jaeger <gjaeger@sysgo.com>
Signed-off-by: Matt Porter <mporter@kernel.crashing.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
20 years ago[PATCH] drm missing memset can crash X server..
airlied@linux.ie [Sun, 13 Mar 2005 05:38:27 +0000 (21:38 -0800)] 
[PATCH] drm missing memset can crash X server..

Egbert Eich reported a bug 2673 on bugs.freedesktop.org and tracked it
down to a missing memset in the setversion ioctl, this causes X server
crashes...

From: Egbert Eich <eich@pdx.freedesktop.org>
Signed-off-by: Dave Airlie <airlied@linux.ie>
Signed-off-by: Chris Wright <chrisw@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
20 years ago[PATCH] cramfs: small stat(2) fix
Eric Lammerts [Sun, 13 Mar 2005 05:35:18 +0000 (21:35 -0800)] 
[PATCH] cramfs: small stat(2) fix

When I stat(2) a device node on a cramfs, the st_blocks field is bogus
(it's derived from the size field which in this case holds the major/minor
numbers).  This makes du(1) output completely wrong.

Signed-off-by: Eric Lammerts <eric@lammerts.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
20 years ago[PATCH] fix amd64 2.6.11 oops on modprobe (saa7110)
khali@linux-fr.org [Sun, 13 Mar 2005 05:33:36 +0000 (21:33 -0800)] 
[PATCH] fix amd64 2.6.11 oops on modprobe (saa7110)

This is a rewrite of the saa7110_write_block function, which was plain
broken in the case where the underlying adapter supports I2C_FUNC_I2C.
It also includes related fixes which ensure that different parts of the
driver agree on the number of registers the chip has.

Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Chris Wright <chrisw@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
20 years ago[PATCH] Linux 2.6.11.2
gregkh@suse.de [Wed, 9 Mar 2005 08:05:27 +0000 (00:05 -0800)] 
[PATCH] Linux 2.6.11.2

20 years ago[PATCH] epoll: return proper error on overflow condition
torvalds@ppc970.osdl.org [Wed, 9 Mar 2005 08:01:53 +0000 (00:01 -0800)] 
[PATCH] epoll: return proper error on overflow condition

Noted by Georgi Guninski.

20 years ago[PATCH] Linux 2.6.11.1
gregkh@suse.de [Fri, 4 Mar 2005 17:15:33 +0000 (09:15 -0800)] 
[PATCH] Linux 2.6.11.1

20 years ago[PATCH] Fix keyboards for Dell machines
dtor_core@ameritech.net [Fri, 4 Mar 2005 16:12:02 +0000 (08:12 -0800)] 
[PATCH] Fix keyboards for Dell machines

Some ACPI-related changes were recently made to i8042 discovery for ia64.
Unfortunately this broke a significant number of Dell laptops due to their
having incorrect BIOS tables.

So, for now, arrange for the new code to be ia64-only.

From: Dmitry Torokhov <dtor_core@ameritech.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
20 years ago[PATCH] Fix for trivial fix for 2.6.11 raid6 compilation on ppc w/ Altivec
olof@austin.ibm.com [Thu, 3 Mar 2005 23:14:35 +0000 (15:14 -0800)] 
[PATCH] Fix for trivial fix for 2.6.11 raid6 compilation on ppc w/ Altivec

Here's a patch that will work for both PPC and PPC64. The proper way to
fix this in mainline is to merge -mm's cpu_has_feature patch, but for
the stable 2.6.11-series, this much less intrusive (i.e. just the pure
bugfix, not the cleanup part).

Signed-off-by: Olof Johansson <olof@austin.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
20 years ago[PATCH] trivial fix for 2.6.11 raid6 compilation on ppc w/ Altivec
Rene Rebe [Thu, 3 Mar 2005 18:58:16 +0000 (10:58 -0800)] 
[PATCH] trivial fix for 2.6.11 raid6 compilation on ppc w/ Altivec

Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
20 years ago2.6.11 import
Greg KH [Thu, 12 May 2005 16:59:06 +0000 (09:59 -0700)] 
2.6.11 import

20 years agoInitial commit
Greg KH [Thu, 12 May 2005 16:55:53 +0000 (09:55 -0700)] 
Initial commit