diff options
author | Jesper Nilsson <jesper.nilsson@axis.com> | 2010-07-30 12:34:16 -0400 |
---|---|---|
committer | Jesper Nilsson <jesper.nilsson@axis.com> | 2010-08-04 06:58:56 -0400 |
commit | 3648bdf79f7e020c3a28c9c842111879d8e506c0 (patch) | |
tree | 249c4ddafc35d0b08320eca51e3925edd90323d5 /arch/cris/mm | |
parent | 60dbd6633178a8625ed71329da0167c6d50c559c (diff) |
CRIS: invoke oom-killer from page fault
As explained in commit 1c0fe6e3bd, we want to call the architecture independent
oom killer when getting an unexplained OOM from handle_mm_fault, rather than
simply killing current.
Signed-off-by: Nick Piggin <npiggin@suse.de>
Acked-by: David Rientjes <rientjes@google.com>
Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
Signed-off-by: Mikael Starvik <starvik@axis.com>
Diffstat (limited to 'arch/cris/mm')
-rw-r--r-- | arch/cris/mm/fault.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/cris/mm/fault.c b/arch/cris/mm/fault.c index 380df1a73a6e..52b32b092603 100644 --- a/arch/cris/mm/fault.c +++ b/arch/cris/mm/fault.c | |||
@@ -245,10 +245,10 @@ do_page_fault(unsigned long address, struct pt_regs *regs, | |||
245 | 245 | ||
246 | out_of_memory: | 246 | out_of_memory: |
247 | up_read(&mm->mmap_sem); | 247 | up_read(&mm->mmap_sem); |
248 | printk("VM: killing process %s\n", tsk->comm); | 248 | if (!user_mode(regs)) |
249 | if (user_mode(regs)) | 249 | goto no_context; |
250 | do_exit(SIGKILL); | 250 | pagefault_out_of_memory(); |
251 | goto no_context; | 251 | return; |
252 | 252 | ||
253 | do_sigbus: | 253 | do_sigbus: |
254 | up_read(&mm->mmap_sem); | 254 | up_read(&mm->mmap_sem); |