LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* patch 3 / 3: fix floppy mount bug in kernel 2.6.21-rc1
@ 2007-03-01 14:32 Uwe Bugla
2007-03-02 0:47 ` Andrew Morton
0 siblings, 1 reply; 3+ messages in thread
From: Uwe Bugla @ 2007-03-01 14:32 UTC (permalink / raw)
To: torvalds
Cc: akpm, linux-dvb, domi.dumont, Jiri Slaby, bunk, linux-kernel,
Stephane Eranian, venkatesh.pallipadi
Hi folks,
this patch fixes the floppy mount bug (i. e. regression) in kernel 2.6.21-rc1. It was inspired by Stephane Eranian. It was tested on an Intel P4 1800 MHz
(Intel ICH4 chipset) and on an AMD Athlon XP 1800 MHz (Silicon Integrated Systems chipset 740, 5513).
My deep thanks and respect go to:
Stephane Eranian, Linus Torvalds, Jiri Slaby. You are truthfully real men and reliable, accurate, fine chaps. It feels great to have you in this world-wide community!
Would you still call the whole i386 architecture "a small number of machines", Mister Andrew Morton? If yes, in how far please?
Signed-off-by: Uwe Bugla <uwe.bugla@gmx.de>
--- a/arch/i386/kernel/process.c
+++ b/arch/i386/kernel/process.c
@@ -154,6 +154,7 @@
current_thread_info()->status |= TS_POLLING;
} else {
/* loop is done by the caller */
+ local_irq_enable();
cpu_relax();
}
}
--
"Feel free" - 10 GB Mailbox, 100 FreeSMS/Monat ...
Jetzt GMX TopMail testen: www.gmx.net/de/go/mailfooter/topmail-out
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: patch 3 / 3: fix floppy mount bug in kernel 2.6.21-rc1
2007-03-01 14:32 patch 3 / 3: fix floppy mount bug in kernel 2.6.21-rc1 Uwe Bugla
@ 2007-03-02 0:47 ` Andrew Morton
2007-03-02 5:18 ` Stephane Eranian
0 siblings, 1 reply; 3+ messages in thread
From: Andrew Morton @ 2007-03-02 0:47 UTC (permalink / raw)
To: Uwe Bugla
Cc: torvalds, linux-dvb, domi.dumont, Jiri Slaby, bunk, linux-kernel,
Stephane Eranian, venkatesh.pallipadi
On Thu, 01 Mar 2007 15:32:22 +0100
"Uwe Bugla" <uwe.bugla@gmx.de> wrote:
> Hi folks,
> this patch fixes the floppy mount bug (i. e. regression) in kernel 2.6.21-rc1. It was inspired by Stephane Eranian. It was tested on an Intel P4 1800 MHz
> (Intel ICH4 chipset) and on an AMD Athlon XP 1800 MHz (Silicon Integrated Systems chipset 740, 5513).
> My deep thanks and respect go to:
> Stephane Eranian, Linus Torvalds, Jiri Slaby. You are truthfully real men and reliable, accurate, fine chaps. It feels great to have you in this world-wide community!
> Would you still call the whole i386 architecture "a small number of machines", Mister Andrew Morton? If yes, in how far please?
>
> Signed-off-by: Uwe Bugla <uwe.bugla@gmx.de>
>
> --- a/arch/i386/kernel/process.c
> +++ b/arch/i386/kernel/process.c
> @@ -154,6 +154,7 @@
> current_thread_info()->status |= TS_POLLING;
> } else {
> /* loop is done by the caller */
> + local_irq_enable();
> cpu_relax();
> }
> }
Linus reverted the offending patch "[PATCH] i386: add idle notifier"
on Feb 26, so this fix should no longer be needed, and 2.6.21-rc2 should
be working again.
Hopefully Stephane will fold this fix into any future version of that patch,
if appropriate.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: patch 3 / 3: fix floppy mount bug in kernel 2.6.21-rc1
2007-03-02 0:47 ` Andrew Morton
@ 2007-03-02 5:18 ` Stephane Eranian
0 siblings, 0 replies; 3+ messages in thread
From: Stephane Eranian @ 2007-03-02 5:18 UTC (permalink / raw)
To: Andrew Morton
Cc: Uwe Bugla, torvalds, linux-dvb, domi.dumont, Jiri Slaby, bunk,
linux-kernel, venkatesh.pallipadi, Stephane Eranian
Andrew,
On Thu, Mar 01, 2007 at 04:47:42PM -0800, Andrew Morton wrote:
> On Thu, 01 Mar 2007 15:32:22 +0100
> "Uwe Bugla" <uwe.bugla@gmx.de> wrote:
>
> > Hi folks,
> > this patch fixes the floppy mount bug (i. e. regression) in kernel 2.6.21-rc1. It was inspired by Stephane Eranian. It was tested on an Intel P4 1800 MHz
> > (Intel ICH4 chipset) and on an AMD Athlon XP 1800 MHz (Silicon Integrated Systems chipset 740, 5513).
> > My deep thanks and respect go to:
> > Stephane Eranian, Linus Torvalds, Jiri Slaby. You are truthfully real men and reliable, accurate, fine chaps. It feels great to have you in this world-wide community!
> > Would you still call the whole i386 architecture "a small number of machines", Mister Andrew Morton? If yes, in how far please?
> >
> > Signed-off-by: Uwe Bugla <uwe.bugla@gmx.de>
> >
> > --- a/arch/i386/kernel/process.c
> > +++ b/arch/i386/kernel/process.c
> > @@ -154,6 +154,7 @@
> > current_thread_info()->status |= TS_POLLING;
> > } else {
> > /* loop is done by the caller */
> > + local_irq_enable();
> > cpu_relax();
> > }
> > }
>
> Linus reverted the offending patch "[PATCH] i386: add idle notifier"
> on Feb 26, so this fix should no longer be needed, and 2.6.21-rc2 should
> be working again.
>
> Hopefully Stephane will fold this fix into any future version of that patch,
> if appropriate.
Well, given that nobody really liked this idle notifier, I am trying to do
differently on all architectures which unfortunately is not an easy thing
to do.
What I did not really like in all of this is that people come up with
arguments without providing the data to prove it, e.g., increase interrupt
latency (by how much?).
--
-Stephane
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-03-02 5:22 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-03-01 14:32 patch 3 / 3: fix floppy mount bug in kernel 2.6.21-rc1 Uwe Bugla
2007-03-02 0:47 ` Andrew Morton
2007-03-02 5:18 ` Stephane Eranian
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 NNTP newsgroup(s).