Re: [PATCH] Accelerate OOM killing

From: Andrew Morton
Date: Wed Mar 30 2011 - 17:43:18 EST


On Thu, 24 Mar 2011 18:52:33 +0900
Minchan Kim <minchan.kim@xxxxxxxxx> wrote:

> When I test Andrey's problem, I saw the livelock and sysrq-t says
> there are many tasks in cond_resched after try_to_free_pages.

__alloc_pages_direct_reclaim() has two cond_resched()s, in
straight-line code. So I think you're concluding that the first
cond_resched() is a no-op, but the second one frequently schedules
away.

For this to be true, the try_to_free_pages() call must be doing
something to cause it, such as taking a large amount of time, or
delivering wakeups, etc. Do we know?

The patch is really a bit worrisome and ugly. If the CPU scheduler has
decided that this task should be preempted then *that* is the problem,
and we need to work out why it is happening and see if there is anything
we should fix. Instead the patch simply ignores the scheduler's
directive, which is known as "papering over a bug".

IOW, we should work out why need_resched is getting set so frequently
rather than just ignoring it (and potentially worsening kernel
scheduling latency).

> If did_some_progress is false, cond_resched could delay oom killing so
> It might be killing another task.
>
> This patch accelerates oom killing without unnecessary giving CPU
> to another task. It could help avoding unnecessary another task killing
> and livelock situation a litte bit.

Well... _does_ it help? What were the results of your testing of this
patch?

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/