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

Commit e262eb93 authored by Guenter Roeck's avatar Guenter Roeck Committed by Linus Torvalds
Browse files

arc: mm: Fix build failure



Fix misspelled define.

Fixes: 33692f27 ("vm: add VM_FAULT_SIGSEGV handling support")
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 1c999c47
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -161,7 +161,7 @@ void do_page_fault(unsigned long address, struct pt_regs *regs)

	if (fault & VM_FAULT_OOM)
		goto out_of_memory;
	else if (fault & VM_FAULT_SIGSEV)
	else if (fault & VM_FAULT_SIGSEGV)
		goto bad_area;
	else if (fault & VM_FAULT_SIGBUS)
		goto do_sigbus;