Commit 4c0720f26e8ab64144fab7b09e725b986ec540a5

Authored by Guenter Roeck
Committed by Greg Kroah-Hartman
1 parent da7f8de964

arc: mm: Fix build failure

commit e262eb9381ad51b5de7a9e762ee773bbd25ce650 upstream.

Fix misspelled define.

Fixes: 33692f27597f ("vm: add VM_FAULT_SIGSEGV handling support")
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -161,7 +161,7 @@
161 161  
162 162 if (fault & VM_FAULT_OOM)
163 163 goto out_of_memory;
164   - else if (fault & VM_FAULT_SIGSEV)
  164 + else if (fault & VM_FAULT_SIGSEGV)
165 165 goto bad_area;
166 166 else if (fault & VM_FAULT_SIGBUS)
167 167 goto do_sigbus;