Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a923c28f authored by David S. Miller's avatar David S. Miller
Browse files

sparc: Use page_fault_out_of_memory() for VM_FAULT_OOM.



As noted by Nick Piggin.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9a926d86
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -319,9 +319,10 @@ asmlinkage void do_sparc_fault(struct pt_regs *regs, int text_fault, int write,
 */
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:
+4 −3
Original line number Diff line number Diff line
@@ -447,9 +447,10 @@ asmlinkage void __kprobes do_sparc64_fault(struct pt_regs *regs)
out_of_memory:
	insn = get_fault_insn(regs, insn);
	up_read(&mm->mmap_sem);
	printk("VM: killing process %s\n", current->comm);
	if (!(regs->tstate & TSTATE_PRIV))
		do_group_exit(SIGKILL);
	if (!(regs->tstate & TSTATE_PRIV)) {
		pagefault_out_of_memory();
		return;
	}
	goto handle_kernel_fault;

intr_or_no_mm: