From: Rusty Russell <rusty@rustcorp.com.au>
To: Linus Torvalds <torvalds@osdl.org>
Cc: Manfred Spraul <manfred@colorfullife.com>,
Ray Bryant <raybry@sgi.com>,
Kernel Mailing List <linux-kernel@vger.kernel.org>,
Andrew Morton <akpm@digeo.com>, Andi Kleen <ak@suse.de>,
Alan Cox <alan@lxorguk.ukuu.org.uk>
Subject: Re: PROBLEM: Bug in __pollwait() can cause select() and poll() to hang in 2.4.22-pre2 -- second try
Date: Tue, 01 Jul 2003 15:08:37 +1000 [thread overview]
Message-ID: <20030701051719.B2B702C090@lists.samba.org> (raw)
In-Reply-To: Your message of "Mon, 30 Jun 2003 21:17:12 MST." <Pine.LNX.4.44.0306302114170.2186-100000@home.osdl.org>
In message <Pine.LNX.4.44.0306302114170.2186-100000@home.osdl.org> you write:
>
> On Tue, 1 Jul 2003, Rusty Russell wrote:
> >
> > Linus? See thread below: poll_wait is called with task state !=
> > TASK_RUNNING, but can do a yield on low memory, causing eternal hangs.
>
> Hint: 2.5.x does not have this problem, because the yield() in 2.5.x isn't
> buggy.
>
> So the proper fix is to just fix yield() on 2.4.x.
Thanks Linus.
Um, Ray? 2.4's yield also does:
void yield(void)
{
set_current_state(TASK_RUNNING);
sys_sched_yield();
schedule();
}
So how did the below patch make any difference?
Now thoroughly confused,
Rusty.
--- linux-2.4.22-pre2.orig/mm/page_alloc.c Thu Nov 28 17:53:15 2002
+++ linux-2.4.22-pre2/mm/page_alloc.c Fri Jun 27 13:47:49 2003
@@ -418,6 +418,7 @@
return NULL;
/* Yield for kswapd, and try again */
+ set_current_state(TASK_RUNNING);
yield();
goto rebalance;
}
--
Anyone who quotes me in their sig is an idiot. -- Rusty Russell.
next prev parent reply other threads:[~2003-07-01 5:03 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-06-27 18:19 PROBLEM: Bug in __pollwait() can cause select() and poll() to hang in 2.4.22-pre2 -- second try Ray Bryant
2003-06-30 4:34 ` Rusty Russell
2003-06-30 16:24 ` Manfred Spraul
2003-07-01 1:17 ` Rusty Russell
2003-07-01 4:17 ` Linus Torvalds
2003-07-01 5:08 ` Rusty Russell [this message]
2003-07-02 18:06 ` Ray Bryant
2003-07-03 0:56 ` Rusty Russell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20030701051719.B2B702C090@lists.samba.org \
--to=rusty@rustcorp.com.au \
--cc=ak@suse.de \
--cc=akpm@digeo.com \
--cc=alan@lxorguk.ukuu.org.uk \
--cc=linux-kernel@vger.kernel.org \
--cc=manfred@colorfullife.com \
--cc=raybry@sgi.com \
--cc=torvalds@osdl.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox