From: Andrew Morton <akpm@osdl.org>
To: Coywolf Qi Hunt <coywolf@lovecn.org>
Cc: coywolf@gmail.com, coywolf@sosdg.org,
linux-kernel@vger.kernel.org, james4765@cwazy.co.uk
Subject: Re: [patch] oom-killer sysrq-f fix
Date: Thu, 24 Mar 2005 17:21:27 -0800 [thread overview]
Message-ID: <20050324172127.110e9dd4.akpm@osdl.org> (raw)
In-Reply-To: <424363BB.80207@lovecn.org>
Coywolf Qi Hunt <coywolf@lovecn.org> wrote:
>
> >>--- 2.6.12-rc1-mm2/mm/oom_kill.c 2005-03-03 17:12:18.000000000 +0800
> >>+++ 2.6.12-rc1-mm2-cy/mm/oom_kill.c 2005-03-25 08:07:19.000000000 +0800
> >>@@ -20,6 +20,7 @@
> >> #include <linux/swap.h>
> >> #include <linux/timex.h>
> >> #include <linux/jiffies.h>
> >>+#include <linux/hardirq.h>
> >>
> >> /* #define DEBUG */
> >>
> >>@@ -283,6 +284,9 @@ retry:
> >> if (mm)
> >> mmput(mm);
> >>
> >>+ if (in_interrupt())
> >>+ return;
> >
> >
> > That'll make the whole feature a no-op, won't it?
>
> It won't be a no-op. I have tested it. It works well.
> I pressed sysrq-f, loging bash got killed and I had to re-login.
(looks)
OK. But the patch is still deadlocky because we do task_lock() from
interrupt context.
> >
> > The thing needs to be moved into process context via schedule_work(). I
> > haven't got around to it yet.
> >
>
> I don't think schedule_work() is a good option here. Since sysrq-f is emergent,
> we just let oom-killer send SIGKILL in interrupt context and return.
>
> We needn't send SIGKILL in a process context. That'll be slow and [events] may got delayed.
There isn't much choice. It should work OK - schedule_task doesn't
allocate any memory.
keventd could be off allocating some memory somewhere, in which case it
could take some time to respond, but it isn't worth running another kernel
thread for sysrq-f.
next prev parent reply other threads:[~2005-03-25 1:26 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-03-25 0:33 [patch] oom-killer sysrq-f fix Coywolf Qi Hunt
2005-03-25 0:44 ` Andrew Morton
2005-03-25 1:04 ` Coywolf Qi Hunt
2005-03-25 1:21 ` Andrew Morton [this message]
2005-03-25 7:36 ` Coywolf Qi Hunt
2005-03-25 9:59 ` Andrew Morton
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=20050324172127.110e9dd4.akpm@osdl.org \
--to=akpm@osdl.org \
--cc=coywolf@gmail.com \
--cc=coywolf@lovecn.org \
--cc=coywolf@sosdg.org \
--cc=james4765@cwazy.co.uk \
--cc=linux-kernel@vger.kernel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.