lkml.org 
[lkml]   [2018]   [Jul]   [12]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRe: [PATCH] ARC: Improve handling of fatal signals in do_page_fault()
Date
Hi Vineet,

On Fri, 2018-06-29 at 11:20 -0700, Alexey Brodkin wrote:
> This was triggered by investigation of a deadlock after OOM killer invocation,
> see [1] for more details.
>
> Looks like our handling of fatal signal in do_page_fault() has some issues:
>
> 1. We only want to do special (read "early") handling of fatal signal
> if handle_mm_fault() returned VM_FAULT_RETRY so that we don't loop
> in retry loop endlessly, otherwise we'll handle that signal normally
> on exit from exception handler.
>
> 2. up_read() is not needed as indeed it will be done in __lock_page_or_retry()
> in mm/filemap.c.
>
> With above comments in mind simplified version should be like that:
> ------------------------------->8---------------------------
> if (fatal_signal_pending(current)
> if (fault & VM_FAULT_RETRY)
> if (user_mode(regs))
> return;
> ------------------------------->8---------------------------
>
> But looks like there's a room for improvement, see [2].
> Instead of proceeding forward and then inevitably hitting retry path we
> short-cut right to kernel fix-up code in no_context.
>
> [1] http://lists.infradead.org/pipermail/linux-snps-arc/2018-February/003403.html
> [2] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=746a272e44141af24a02f6c9b0f65f4c4598ed42
>
> Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>

I should have put that in commit message right away:)

This patch fixes OOM lock-up we were seeing previously,
see STAR 9001304674 "OOM killer hangs system".

-Alexey
\
 
 \ /
  Last update: 2018-07-15 22:05    [W:0.166 / U:0.220 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site