public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] README (resend) - Explain new 2.6.xx.x version number
@ 2004-09-14 21:35 Daniel Andersen
  2004-09-14 21:43 ` Dave Jones
  2004-09-15  1:02 ` Roman Zippel
  0 siblings, 2 replies; 10+ messages in thread
From: Daniel Andersen @ 2004-09-14 21:35 UTC (permalink / raw)
  To: linux-kernel; +Cc: torvalds

This one ended up in the void last time without any comments.

Daniel Andersen

--

diff -urN linux/README.orig linux/README
--- linux/README.orig    2004-08-14 07:37:40.000000000 +0200
+++ linux/README    2004-08-27 17:16:55.107413637 +0200
@@ -76,6 +76,23 @@
     the backup files (xxx~ or xxx.orig), and make sure that there are no
     failed patches (xxx# or xxx.rej). If there are, either you or me has
     made a mistake.
+
+   As of kernel 2.6.8 there was a bug-fix release numbering scheme
+   introduced. In such cases a fourth number is added to the release
+   version, eg. 2.6.8.1. When patching from a 2.6.xx(.x) release to a
+   newer version, patches are to be applied against the original
+   release, eg. 2.6.8 and not the bug-fix release 2.6.8.1. In case of a
+   bug-fix release such as if eg. 2.6.8.2 is released after 2.6.9 has
+   been released, 2.6.9 is still to be considered the newest kernel
+   release of all current kernels. Old patches can be reversed by
+   adding the "-R" option to the patch tool.
+
+                Example to apply a bugfix release patch:
+                bzip2 -dc ../patch-2.6.8.1.bz2 | patch -p1
+
+                Example to apply a new release on a bugfix tree:
+                bzip2 -dc ../patch-2.6.8.1.bz2 | patch -p1 -R
+                bzip2 -dc ../patch-2.6.9.bz2 | patch -p1

     Alternatively, the script patch-kernel can be used to automate this
     process.  It determines the current kernel version and applies any

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

* Re: [PATCH] README (resend) - Explain new 2.6.xx.x version number
  2004-09-14 21:35 [PATCH] README (resend) - Explain new 2.6.xx.x version number Daniel Andersen
@ 2004-09-14 21:43 ` Dave Jones
  2004-09-14 22:23   ` Daniel Andersen
  2004-09-15  1:02 ` Roman Zippel
  1 sibling, 1 reply; 10+ messages in thread
From: Dave Jones @ 2004-09-14 21:43 UTC (permalink / raw)
  To: Daniel Andersen; +Cc: linux-kernel, torvalds

On Tue, Sep 14, 2004 at 11:35:15PM +0200, Daniel Andersen wrote:

 > +   In case of a
 > +   bug-fix release such as if eg. 2.6.8.2 is released after 2.6.9 has
 > +   been released, 2.6.9 is still to be considered the newest kernel
 > +   release of all current kernels.

This bit seems odd to me. Why would a 2.6.8.2 get released, when there's
a newer 2.6.9 which should fix whatever was relevant to get into 2.6.8.x ?

		Dave


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

* Re: [PATCH] README (resend) - Explain new 2.6.xx.x version number
  2004-09-14 21:43 ` Dave Jones
@ 2004-09-14 22:23   ` Daniel Andersen
  0 siblings, 0 replies; 10+ messages in thread
From: Daniel Andersen @ 2004-09-14 22:23 UTC (permalink / raw)
  To: Dave Jones; +Cc: linux-kernel

Dave Jones wrote:
> On Tue, Sep 14, 2004 at 11:35:15PM +0200, Daniel Andersen wrote:
> 
>  > +   In case of a
>  > +   bug-fix release such as if eg. 2.6.8.2 is released after 2.6.9 has
>  > +   been released, 2.6.9 is still to be considered the newest kernel
>  > +   release of all current kernels.
> 
> This bit seems odd to me. Why would a 2.6.8.2 get released, when there's
> a newer 2.6.9 which should fix whatever was relevant to get into 2.6.8.x ?
> 
> 		Dave
> 

This was discussed in the thread "Linux 2.6.9-rc1". Linus said there was 
a remote possibility it could happen some day so I thought it was a good 
thing to mention.

Daniel Andersen

--

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

* Re: [PATCH] README (resend) - Explain new 2.6.xx.x version number
  2004-09-14 21:35 [PATCH] README (resend) - Explain new 2.6.xx.x version number Daniel Andersen
  2004-09-14 21:43 ` Dave Jones
@ 2004-09-15  1:02 ` Roman Zippel
  2004-09-15  2:25   ` Daniel Andersen
  2004-09-15  2:40   ` Randy.Dunlap
  1 sibling, 2 replies; 10+ messages in thread
From: Roman Zippel @ 2004-09-15  1:02 UTC (permalink / raw)
  To: Daniel Andersen; +Cc: linux-kernel, torvalds

Hi,

On Tue, 14 Sep 2004, Daniel Andersen wrote:

> This one ended up in the void last time without any comments.

The funny thing is by the time people managed to apply the patch 
correctly, they don't need to read the README anymore.
Seriously, without knowing about the pre-patches, what would you expect 
about the patch order if you found the patches 2.6.8, 2.6.8.1, 2.6.9?

bye, Roman

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

* Re: [PATCH] README (resend) - Explain new 2.6.xx.x version number
  2004-09-15  1:02 ` Roman Zippel
@ 2004-09-15  2:25   ` Daniel Andersen
  2004-09-15  2:40   ` Randy.Dunlap
  1 sibling, 0 replies; 10+ messages in thread
From: Daniel Andersen @ 2004-09-15  2:25 UTC (permalink / raw)
  To: Roman Zippel; +Cc: linux-kernel, torvalds

Roman Zippel wrote:
> Hi,
> 
> On Tue, 14 Sep 2004, Daniel Andersen wrote:
> 
> 
>>This one ended up in the void last time without any comments.
> 
> 
> The funny thing is by the time people managed to apply the patch 
> correctly, they don't need to read the README anymore.
> Seriously, without knowing about the pre-patches, what would you expect 
> about the patch order if you found the patches 2.6.8, 2.6.8.1, 2.6.9?
> 
> bye, Roman

I'm not sure what you really mean to say. And I'm not expecting 
anything. I wrote the patch because I see people ask, even on this list, 
if 2.6.9 is to be applied against 2.6.8 or 2.6.8.1. Whats the trouble?

Daniel Andersen

--

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

* Re: [PATCH] README (resend) - Explain new 2.6.xx.x version number
  2004-09-15  1:02 ` Roman Zippel
  2004-09-15  2:25   ` Daniel Andersen
@ 2004-09-15  2:40   ` Randy.Dunlap
  2004-09-15  8:01     ` Denis Vlasenko
  2004-09-15 11:06     ` Roman Zippel
  1 sibling, 2 replies; 10+ messages in thread
From: Randy.Dunlap @ 2004-09-15  2:40 UTC (permalink / raw)
  To: Roman Zippel; +Cc: Daniel Andersen, linux-kernel, torvalds

> Hi,
>
> On Tue, 14 Sep 2004, Daniel Andersen wrote:
>
>> This one ended up in the void last time without any comments.
>
> The funny thing is by the time people managed to apply the patch
> correctly, they don't need to read the README anymore.

That's correct for this time.  However, if they have other kernel
trees (in the future) with this patch applied, it can help.

> Seriously, without knowing about the pre-patches, what would you expect
> about the patch order if you found the patches 2.6.8, 2.6.8.1, 2.6.9?

We have evidence that it's confusing to more than one person.

~Randy


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

* Re: [PATCH] README (resend) - Explain new 2.6.xx.x version number
  2004-09-15  2:40   ` Randy.Dunlap
@ 2004-09-15  8:01     ` Denis Vlasenko
  2004-09-15 11:06     ` Roman Zippel
  1 sibling, 0 replies; 10+ messages in thread
From: Denis Vlasenko @ 2004-09-15  8:01 UTC (permalink / raw)
  To: Randy.Dunlap, Roman Zippel; +Cc: Daniel Andersen, linux-kernel, torvalds

On Wednesday 15 September 2004 05:40, Randy.Dunlap wrote:
> > Hi,
> >
> > On Tue, 14 Sep 2004, Daniel Andersen wrote:
> >> This one ended up in the void last time without any comments.
> >
> > The funny thing is by the time people managed to apply the patch
> > correctly, they don't need to read the README anymore.
>
> That's correct for this time.  However, if they have other kernel
> trees (in the future) with this patch applied, it can help.
>
> > Seriously, without knowing about the pre-patches, what would you expect
> > about the patch order if you found the patches 2.6.8, 2.6.8.1, 2.6.9?
>
> We have evidence that it's confusing to more than one person.

Using 2.6.8-fix1 instead of 2.6.8.1 could avoid such problems.
--
vda


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

* Re: [PATCH] README (resend) - Explain new 2.6.xx.x version number
  2004-09-15  2:40   ` Randy.Dunlap
  2004-09-15  8:01     ` Denis Vlasenko
@ 2004-09-15 11:06     ` Roman Zippel
  2004-09-15 15:25       ` Randy.Dunlap
  1 sibling, 1 reply; 10+ messages in thread
From: Roman Zippel @ 2004-09-15 11:06 UTC (permalink / raw)
  To: Randy.Dunlap; +Cc: Daniel Andersen, linux-kernel, torvalds

Hi,

On Tue, 14 Sep 2004, Randy.Dunlap wrote:

> > Seriously, without knowing about the pre-patches, what would you expect
> > about the patch order if you found the patches 2.6.8, 2.6.8.1, 2.6.9?
> 
> We have evidence that it's confusing to more than one person.

The question is what is more confusing to most of the users?
What are the expectation of the average user?

bye, Roman

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

* Re: [PATCH] README (resend) - Explain new 2.6.xx.x version number
  2004-09-15 11:06     ` Roman Zippel
@ 2004-09-15 15:25       ` Randy.Dunlap
  2004-09-15 15:57         ` Roman Zippel
  0 siblings, 1 reply; 10+ messages in thread
From: Randy.Dunlap @ 2004-09-15 15:25 UTC (permalink / raw)
  To: Roman Zippel; +Cc: anddan, linux-kernel, torvalds

On Wed, 15 Sep 2004 13:06:06 +0200 (CEST) Roman Zippel wrote:

| Hi,
| 
| On Tue, 14 Sep 2004, Randy.Dunlap wrote:
| 
| > > Seriously, without knowing about the pre-patches, what would you expect
| > > about the patch order if you found the patches 2.6.8, 2.6.8.1, 2.6.9?
| > 
| > We have evidence that it's confusing to more than one person.
| 
| The question is what is more confusing to most of the users?
| What are the expectation of the average user?

I have no idea.  A decision was made and now there are some
attempts to document it.  Are you trying to ask for the decision
to be reconsidered?

--
~Randy

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

* Re: [PATCH] README (resend) - Explain new 2.6.xx.x version number
  2004-09-15 15:25       ` Randy.Dunlap
@ 2004-09-15 15:57         ` Roman Zippel
  0 siblings, 0 replies; 10+ messages in thread
From: Roman Zippel @ 2004-09-15 15:57 UTC (permalink / raw)
  To: Randy.Dunlap; +Cc: anddan, linux-kernel, torvalds

Hi,

On Wed, 15 Sep 2004, Randy.Dunlap wrote:

> I have no idea.  A decision was made and now there are some
> attempts to document it.

When and by whom?

>  Are you trying to ask for the decision
> to be reconsidered?

I'd really be interested in the reasoning for it and against the 
alternatives.

bye, Roman

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

end of thread, other threads:[~2004-09-15 16:00 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-09-14 21:35 [PATCH] README (resend) - Explain new 2.6.xx.x version number Daniel Andersen
2004-09-14 21:43 ` Dave Jones
2004-09-14 22:23   ` Daniel Andersen
2004-09-15  1:02 ` Roman Zippel
2004-09-15  2:25   ` Daniel Andersen
2004-09-15  2:40   ` Randy.Dunlap
2004-09-15  8:01     ` Denis Vlasenko
2004-09-15 11:06     ` Roman Zippel
2004-09-15 15:25       ` Randy.Dunlap
2004-09-15 15:57         ` Roman Zippel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox