Re: Linux 2.6.11.4

2005-03-16 Thread Jeff Garzik
Greg KH wrote: On Wed, Mar 16, 2005 at 02:11:43PM +0100, Krzysztof Halasa wrote: Greg KH <[EMAIL PROTECTED]> writes: I've release 2.6.11.4 with two security fixes in it. It can be found at the normal kernel.org places. How about the N2/C101/PCI200SYN WAN driver fix (kernel panic on receive)?

Re: Linux 2.6.11.4

2005-03-16 Thread Greg KH
On Wed, Mar 16, 2005 at 02:11:43PM +0100, Krzysztof Halasa wrote: > Greg KH <[EMAIL PROTECTED]> writes: > > > I've release 2.6.11.4 with two security fixes in it. It can be found at > > the normal kernel.org places. > > How about the N2/C101/PCI200SYN WAN driver fix (kernel panic on receive)? >

Re: Linux 2.6.11.4

2005-03-16 Thread Krzysztof Halasa
Greg KH <[EMAIL PROTECTED]> writes: > I've release 2.6.11.4 with two security fixes in it. It can be found at > the normal kernel.org places. How about the N2/C101/PCI200SYN WAN driver fix (kernel panic on receive)? Signed-off-by: Krzysztof Halasa <[EMAIL PROTECTED]> -- Krzysztof Halasa ---

Re: Linux 2.6.11.4

2005-03-16 Thread Krzysztof Halasa
Greg KH [EMAIL PROTECTED] writes: I've release 2.6.11.4 with two security fixes in it. It can be found at the normal kernel.org places. How about the N2/C101/PCI200SYN WAN driver fix (kernel panic on receive)? Signed-off-by: Krzysztof Halasa [EMAIL PROTECTED] -- Krzysztof Halasa ---

Re: Linux 2.6.11.4

2005-03-16 Thread Greg KH
On Wed, Mar 16, 2005 at 02:11:43PM +0100, Krzysztof Halasa wrote: Greg KH [EMAIL PROTECTED] writes: I've release 2.6.11.4 with two security fixes in it. It can be found at the normal kernel.org places. How about the N2/C101/PCI200SYN WAN driver fix (kernel panic on receive)?

Re: Linux 2.6.11.4

2005-03-16 Thread Jeff Garzik
Greg KH wrote: On Wed, Mar 16, 2005 at 02:11:43PM +0100, Krzysztof Halasa wrote: Greg KH [EMAIL PROTECTED] writes: I've release 2.6.11.4 with two security fixes in it. It can be found at the normal kernel.org places. How about the N2/C101/PCI200SYN WAN driver fix (kernel panic on receive)?

Re: Linux 2.6.11.4

2005-03-15 Thread Hacksaw
+ while (dlen >= 2 && dlen >= data[1] && data[1] >= 2) { Not that it matters much to me, since I don't have to maintain it, but couldn't this be: while (data[1] >= 2 && dlen >= data[1]) { I think this captures the relationship and priority. -- http://www.hacksaw.org --

Linux 2.6.11.4

2005-03-15 Thread Greg KH
, greg k-h -- Makefile|2 +- drivers/net/ppp_async.c |2 +- fs/exec.c |2 +- 3 files changed, 3 insertions(+), 3 deletions(-) Summary of changes from v2.6.11.3 to v2.6.11.4 == Greg Kroah-Hartman: o Linux

Re: Linux 2.6.11.4

2005-03-15 Thread Greg KH
diff -Nru a/Makefile b/Makefile --- a/Makefile 2005-03-15 16:09:59 -08:00 +++ b/Makefile 2005-03-15 16:09:59 -08:00 @@ -1,7 +1,7 @@ VERSION = 2 PATCHLEVEL = 6 SUBLEVEL = 11 -EXTRAVERSION = .3 +EXTRAVERSION = .4 NAME=Woozy Numbat # *DOCUMENTATION* diff -Nru a/drivers/net/ppp_async.c

Re: Linux 2.6.11.4

2005-03-15 Thread Greg KH
diff -Nru a/Makefile b/Makefile --- a/Makefile 2005-03-15 16:09:59 -08:00 +++ b/Makefile 2005-03-15 16:09:59 -08:00 @@ -1,7 +1,7 @@ VERSION = 2 PATCHLEVEL = 6 SUBLEVEL = 11 -EXTRAVERSION = .3 +EXTRAVERSION = .4 NAME=Woozy Numbat # *DOCUMENTATION* diff -Nru a/drivers/net/ppp_async.c

Linux 2.6.11.4

2005-03-15 Thread Greg KH
, greg k-h -- Makefile|2 +- drivers/net/ppp_async.c |2 +- fs/exec.c |2 +- 3 files changed, 3 insertions(+), 3 deletions(-) Summary of changes from v2.6.11.3 to v2.6.11.4 == Greg Kroah-Hartman: o Linux

Re: Linux 2.6.11.4

2005-03-15 Thread Hacksaw
+ while (dlen = 2 dlen = data[1] data[1] = 2) { Not that it matters much to me, since I don't have to maintain it, but couldn't this be: while (data[1] = 2 dlen = data[1]) { I think this captures the relationship and priority. -- http://www.hacksaw.org --