Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
...@@ -161,7 +161,7 @@ good_area: ...@@ -161,7 +161,7 @@ good_area:
if (fault & VM_FAULT_OOM) if (fault & VM_FAULT_OOM)
goto out_of_memory; goto out_of_memory;
else if (fault & VM_FAULT_SIGSEV) else if (fault & VM_FAULT_SIGSEGV)
goto bad_area; goto bad_area;
else if (fault & VM_FAULT_SIGBUS) else if (fault & VM_FAULT_SIGBUS)
goto do_sigbus; goto do_sigbus;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment