sparc: Use page_fault_out_of_memory() for VM_FAULT_OOM.

As noted by Nick Piggin.

Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
David S. Miller
2009-08-02 19:17:15 -07:00
parent 9a926d86b2
commit a923c28fc5
2 changed files with 8 additions and 6 deletions

View File

@@ -319,9 +319,10 @@ no_context:
*/
out_of_memory:
up_read(&mm->mmap_sem);
printk("VM: killing process %s\n", tsk->comm);
if (from_user)
do_group_exit(SIGKILL);
if (from_user) {
pagefault_out_of_memory();
return;
}
goto no_context;
do_sigbus: