LKML Archive mirror
 help / color / mirror / Atom feed
* Linux 2.6.16.24
@ 2006-07-06 22:25 Greg KH
  2006-07-06 22:28 ` Greg KH
  2006-07-07 10:54 ` Pavel Machek
  0 siblings, 2 replies; 7+ messages in thread
From: Greg KH @ 2006-07-06 22:25 UTC (permalink / raw
  To: linux-kernel; +Cc: torvalds, stable, Andrew Morton

We (the -stable team) are announcing the release of the 2.6.16.24 kernel.

I'll also be replying to this message with a copy of the patch between
2.6.16.23 and 2.6.16.24, as it is small enough to do so.

The updated 2.6.16.y git tree can be found at:
 	git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-2.6.16.y.git
and can be browsed at the normal kernel.org git web browser:
	www.kernel.org/git/

thanks,

greg k-h

--------


 Makefile     |    2 +-
 kernel/sys.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Summary of changes from v2.6.16.23 to v2.6.16.24
================================================

Greg Kroah-Hartman:
      fix prctl privilege escalation and suid_dumpable (CVE-2006-2451)
      Linux 2.6.16.24


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Linux 2.6.16.24
  2006-07-06 22:25 Linux 2.6.16.24 Greg KH
@ 2006-07-06 22:28 ` Greg KH
  2006-07-07 10:54 ` Pavel Machek
  1 sibling, 0 replies; 7+ messages in thread
From: Greg KH @ 2006-07-06 22:28 UTC (permalink / raw
  To: linux-kernel; +Cc: torvalds, stable, Andrew Morton

diff --git a/Makefile b/Makefile
index da3e313..9b1622f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 VERSION = 2
 PATCHLEVEL = 6
 SUBLEVEL = 16
-EXTRAVERSION = .23
+EXTRAVERSION = .24
 NAME=Sliding Snow Leopard
 
 # *DOCUMENTATION*
diff --git a/kernel/sys.c b/kernel/sys.c
index 105e102..413706a 100644
--- a/kernel/sys.c
+++ b/kernel/sys.c
@@ -1802,7 +1802,7 @@ asmlinkage long sys_prctl(int option, un
 			error = current->mm->dumpable;
 			break;
 		case PR_SET_DUMPABLE:
-			if (arg2 < 0 || arg2 > 2) {
+			if (arg2 < 0 || arg2 > 1) {
 				error = -EINVAL;
 				break;
 			}

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: Linux 2.6.16.24
  2006-07-06 22:25 Linux 2.6.16.24 Greg KH
  2006-07-06 22:28 ` Greg KH
@ 2006-07-07 10:54 ` Pavel Machek
  2006-07-07 12:37   ` Linux 2.6.16.y series Michael Krufky
  1 sibling, 1 reply; 7+ messages in thread
From: Pavel Machek @ 2006-07-07 10:54 UTC (permalink / raw
  To: Greg KH; +Cc: linux-kernel, torvalds, stable, Andrew Morton

Hi!

> We (the -stable team) are announcing the release of the 2.6.16.24 kernel.
> 
> I'll also be replying to this message with a copy of the patch between
> 2.6.16.23 and 2.6.16.24, as it is small enough to do so.
> 
> The updated 2.6.16.y git tree can be found at:
>  	git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-2.6.16.y.git
> and can be browsed at the normal kernel.org git web browser:
> 	www.kernel.org/git/

Is it still okay to submit patches for 2.6.16-stable? I guess "dirty
buffers flushing broken after resume" may count...
								Pavel
-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Linux 2.6.16.y series
  2006-07-07 10:54 ` Pavel Machek
@ 2006-07-07 12:37   ` Michael Krufky
  2006-07-10 16:54     ` Adrian Bunk
  0 siblings, 1 reply; 7+ messages in thread
From: Michael Krufky @ 2006-07-07 12:37 UTC (permalink / raw
  To: Pavel Machek
  Cc: Greg KH, linux-kernel, torvalds, stable, Andrew Morton,
	Adrian Bunk

Pavel Machek wrote:

>Is it still okay to submit patches for 2.6.16-stable? I guess "dirty
>buffers flushing broken after resume" may count...
>								Pavel
>  
>
I was under the impression that 2.6.16.y was staying open for a much 
longer time, as per Adrian's "2.6.16 long living kernel" announcement a 
short while back.

I just assumed that the Greg and Chris were handling it until 2.6.18 
gets released, and then Adrian takes over 2.6.16.y while the [stable] 
team moves on to 2.6.17.y and 2.6.18.y ...  Was this an incorrect 
assumption?

...and if not, should 2.6.16.y patches always be sent to 
stable@kernel.org, or will Adrian have an alternate method for accepting 
patches?

-Mike

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Linux 2.6.16.y series
  2006-07-10 16:54     ` Adrian Bunk
@ 2006-07-10 16:43       ` David Lang
  2006-07-11 22:36         ` Greg KH
  0 siblings, 1 reply; 7+ messages in thread
From: David Lang @ 2006-07-10 16:43 UTC (permalink / raw
  To: Adrian Bunk
  Cc: Michael Krufky, Pavel Machek, Greg KH, linux-kernel, torvalds,
	stable, Andrew Morton

On Mon, 10 Jul 2006, Adrian Bunk wrote:

>
> Greg told me they want to make one last 2.6.16.y release.
>
> Greg and Chris don't maintain two series that long - check the date of
> the last 2.6.15.y release.

they haven't in the past, but I thought the stated plan was to support -stable 
for two revs back going forward.

David Lang

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Linux 2.6.16.y series
  2006-07-07 12:37   ` Linux 2.6.16.y series Michael Krufky
@ 2006-07-10 16:54     ` Adrian Bunk
  2006-07-10 16:43       ` David Lang
  0 siblings, 1 reply; 7+ messages in thread
From: Adrian Bunk @ 2006-07-10 16:54 UTC (permalink / raw
  To: Michael Krufky
  Cc: Pavel Machek, Greg KH, linux-kernel, torvalds, stable,
	Andrew Morton

On Fri, Jul 07, 2006 at 08:37:33AM -0400, Michael Krufky wrote:
> Pavel Machek wrote:
> 
> >Is it still okay to submit patches for 2.6.16-stable? I guess "dirty
> >buffers flushing broken after resume" may count...
> >								Pavel
> > 
> >
> I was under the impression that 2.6.16.y was staying open for a much 
> longer time, as per Adrian's "2.6.16 long living kernel" announcement a 
> short while back.
> 
> I just assumed that the Greg and Chris were handling it until 2.6.18 
> gets released, and then Adrian takes over 2.6.16.y while the [stable] 
> team moves on to 2.6.17.y and 2.6.18.y ...  Was this an incorrect 
> assumption?

Greg told me they want to make one last 2.6.16.y release.

Greg and Chris don't maintain two series that long - check the date of 
the last 2.6.15.y release.

> ...and if not, should 2.6.16.y patches always be sent to 
> stable@kernel.org, or will Adrian have an alternate method for accepting 
> patches?

This is among the small technical issues that have to be discussed and 
solved.

> -Mike

cu
Adrian

-- 

       "Is there not promise of rain?" Ling Tan asked suddenly out
        of the darkness. There had been need of rain for many days.
       "Only a promise," Lao Er said.
                                       Pearl S. Buck - Dragon Seed


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Linux 2.6.16.y series
  2006-07-10 16:43       ` David Lang
@ 2006-07-11 22:36         ` Greg KH
  0 siblings, 0 replies; 7+ messages in thread
From: Greg KH @ 2006-07-11 22:36 UTC (permalink / raw
  To: David Lang
  Cc: Adrian Bunk, Michael Krufky, Pavel Machek, linux-kernel, torvalds,
	stable, Andrew Morton

On Mon, Jul 10, 2006 at 09:43:36AM -0700, David Lang wrote:
> On Mon, 10 Jul 2006, Adrian Bunk wrote:
> 
> >
> >Greg told me they want to make one last 2.6.16.y release.
> >
> >Greg and Chris don't maintain two series that long - check the date of
> >the last 2.6.15.y release.
> 
> they haven't in the past, but I thought the stated plan was to support 
> -stable for two revs back going forward.

Hm, I don't remember saying that anywhere, I was thinking we (Chris and
I) were agreeing to maintain the last full version for a few releases,
like we are currently doing.

Hopefully I can flush the last 2.6.16 patches out this week and then
hand it over to Adrian for him to have his way with it :)

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2006-07-11 22:41 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-06 22:25 Linux 2.6.16.24 Greg KH
2006-07-06 22:28 ` Greg KH
2006-07-07 10:54 ` Pavel Machek
2006-07-07 12:37   ` Linux 2.6.16.y series Michael Krufky
2006-07-10 16:54     ` Adrian Bunk
2006-07-10 16:43       ` David Lang
2006-07-11 22:36         ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).