public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Linux 2.2.24-rc1
@ 2002-12-16 20:18 Alan Cox
  2002-12-17  0:15 ` Pawel Kot
  0 siblings, 1 reply; 7+ messages in thread
From: Alan Cox @ 2002-12-16 20:18 UTC (permalink / raw)
  To: linux-kernel

Linux 2.2.24-rc1

o	Fix a typo in the maintainers			(James Morris)
o	Dave Niemi has moved				(Dave Niemi)
o	Fix incorrect blocking on nonblock pipe		(Pete Benie)
o	Fix misidentification of some AMD processors	(Bruce Robson)
o	Fix a very obscure skb_realloc_headroom bug	(James Morris)
o	Fix warning in lance driver			(Thomas Cort)
o	Fix sign handling bug in pms driver		(Silvio Cesare)
o	Drop mmap on /proc/<pid>/mem as 2.4/2.5 did	(Michal Zalewski)
	(also fixes some bugs)

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

* Re: Linux 2.2.24-rc1
  2002-12-16 20:18 Linux 2.2.24-rc1 Alan Cox
@ 2002-12-17  0:15 ` Pawel Kot
  2002-12-17  1:33   ` Alan Cox
  2002-12-19 12:35   ` Robert Boermans
  0 siblings, 2 replies; 7+ messages in thread
From: Pawel Kot @ 2002-12-17  0:15 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-kernel

On Mon, 16 Dec 2002, Alan Cox wrote:

> Linux 2.2.24-rc1
[...]
> o	Fix misidentification of some AMD processors	(Bruce Robson)
[...]

Is it the following chunk? (I can't find anything more appropriate)
@@ -1378,7 +1378,8 @@
                        return;

                case X86_VENDOR_AMD:
-                       init_amd(c);
+                       if(init_amd(c))
+                               return;
                        return;

                case X86_VENDOR_CENTAUR:
What does it fix?

pkot
-- 
mailto:pkot@linuxnews.pl :: mailto:pkot@slackware.pl
http://kt.linuxnews.pl/ :: Kernel Traffic po polsku


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

* Re: Linux 2.2.24-rc1
  2002-12-17  1:33   ` Alan Cox
@ 2002-12-17  1:06     ` Dave Jones
  2002-12-17  2:16       ` Alan Cox
  0 siblings, 1 reply; 7+ messages in thread
From: Dave Jones @ 2002-12-17  1:06 UTC (permalink / raw)
  To: Alan Cox; +Cc: Pawel Kot, Linux Kernel Mailing List

On Tue, Dec 17, 2002 at 01:33:53AM +0000, Alan Cox wrote:
 > On Tue, 2002-12-17 at 00:15, Pawel Kot wrote:
 > >                 case X86_VENDOR_AMD:
 > > -                       init_amd(c);
 > > +                       if(init_amd(c))
 > > +                               return;
 > >                         return;
 > > 
 > >                 case X86_VENDOR_CENTAUR:
 > > What does it fix?
 > 
 > If we get a vendor string, we should use it - thats all

This patch also makes us unconditionally skip the mcheck_init
if we have a vendor string. That doesn't seem right.

		Dave

-- 
| Dave Jones.        http://www.codemonkey.org.uk
| SuSE Labs

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

* Re: Linux 2.2.24-rc1
  2002-12-17  0:15 ` Pawel Kot
@ 2002-12-17  1:33   ` Alan Cox
  2002-12-17  1:06     ` Dave Jones
  2002-12-19 12:35   ` Robert Boermans
  1 sibling, 1 reply; 7+ messages in thread
From: Alan Cox @ 2002-12-17  1:33 UTC (permalink / raw)
  To: Pawel Kot; +Cc: Alan Cox, Linux Kernel Mailing List

On Tue, 2002-12-17 at 00:15, Pawel Kot wrote:
>                 case X86_VENDOR_AMD:
> -                       init_amd(c);
> +                       if(init_amd(c))
> +                               return;
>                         return;
> 
>                 case X86_VENDOR_CENTAUR:
> What does it fix?

If we get a vendor string, we should use it - thats all


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

* Re: Linux 2.2.24-rc1
  2002-12-17  1:06     ` Dave Jones
@ 2002-12-17  2:16       ` Alan Cox
  0 siblings, 0 replies; 7+ messages in thread
From: Alan Cox @ 2002-12-17  2:16 UTC (permalink / raw)
  To: Dave Jones; +Cc: Pawel Kot, Linux Kernel Mailing List

On Tue, 2002-12-17 at 01:06, Dave Jones wrote:

>  > If we get a vendor string, we should use it - thats all
> 
> This patch also makes us unconditionally skip the mcheck_init
> if we have a vendor string. That doesn't seem right.

True.. ok its more complicated to fix 8(


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

* Re: Linux 2.2.24-rc1
  2002-12-17  0:15 ` Pawel Kot
  2002-12-17  1:33   ` Alan Cox
@ 2002-12-19 12:35   ` Robert Boermans
  2002-12-19 12:48     ` Alan Cox
  1 sibling, 1 reply; 7+ messages in thread
From: Robert Boermans @ 2002-12-19 12:35 UTC (permalink / raw)
  To: Pawel Kot; +Cc: Alan Cox, linux-kernel

Pawel Kot wrote:

>Is it the following chunk? (I can't find anything more appropriate)
>@@ -1378,7 +1378,8 @@
>                        return;
>
>                case X86_VENDOR_AMD:
>-                       init_amd(c);
>+                       if(init_amd(c))
>+                               return;
>                        return;
>
>                case X86_VENDOR_CENTAUR:
>What does it fix?
>
>pkot
>  
>
i assume there was more to the patch?

i mean first it did init_amd(c) and then return
now it does init_amd(c) and returns in the if or right on the next line, 
so that's the same with extra bloat.

confused,

Robert Boermans.


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

* Re: Linux 2.2.24-rc1
  2002-12-19 12:35   ` Robert Boermans
@ 2002-12-19 12:48     ` Alan Cox
  0 siblings, 0 replies; 7+ messages in thread
From: Alan Cox @ 2002-12-19 12:48 UTC (permalink / raw)
  To: Robert Boermans; +Cc: Pawel Kot, Alan Cox, linux-kernel

> i assume there was more to the patch?

Well no. Its just I got it slightly wrong 8)

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

end of thread, other threads:[~2002-12-19 12:40 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-12-16 20:18 Linux 2.2.24-rc1 Alan Cox
2002-12-17  0:15 ` Pawel Kot
2002-12-17  1:33   ` Alan Cox
2002-12-17  1:06     ` Dave Jones
2002-12-17  2:16       ` Alan Cox
2002-12-19 12:35   ` Robert Boermans
2002-12-19 12:48     ` Alan Cox

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