From: Greg Kroah-Hartman Date: Sun, 26 Apr 2015 17:11:27 +0000 (+0200) Subject: 3.10-stable patches X-Git-Tag: v4.0.1~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=566e329011c2f7a73b54520446872dc18ab729c0;p=thirdparty%2Fkernel%2Fstable-queue.git 3.10-stable patches added patches: arc-mm-fix-build-failure.patch --- diff --git a/queue-3.10/arc-mm-fix-build-failure.patch b/queue-3.10/arc-mm-fix-build-failure.patch new file mode 100644 index 00000000000..302c42069f2 --- /dev/null +++ b/queue-3.10/arc-mm-fix-build-failure.patch @@ -0,0 +1,31 @@ +From e262eb9381ad51b5de7a9e762ee773bbd25ce650 Mon Sep 17 00:00:00 2001 +From: Guenter Roeck +Date: Thu, 29 Jan 2015 19:15:33 -0800 +Subject: arc: mm: Fix build failure + +From: Guenter Roeck + +commit e262eb9381ad51b5de7a9e762ee773bbd25ce650 upstream. + +Fix misspelled define. + +Fixes: 33692f27597f ("vm: add VM_FAULT_SIGSEGV handling support") +Signed-off-by: Guenter Roeck +Signed-off-by: Linus Torvalds +Signed-off-by: Greg Kroah-Hartman + +--- + arch/arc/mm/fault.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +--- a/arch/arc/mm/fault.c ++++ b/arch/arc/mm/fault.c +@@ -160,7 +160,7 @@ good_area: + /* TBD: switch to pagefault_out_of_memory() */ + 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; diff --git a/queue-3.10/series b/queue-3.10/series index e7bfea38757..b99de882e42 100644 --- a/queue-3.10/series +++ b/queue-3.10/series @@ -29,3 +29,4 @@ vm-add-vm_fault_sigsegv-handling-support.patch vm-make-stack-guard-page-errors-return-vm_fault_sigsegv-rather-than-sigbus.patch x86-mm-move-mmap_sem-unlock-from-mm_fault_error-to-caller.patch sb_edac-avoid-internal-error-message-in-edac-with-unspecified-channel.patch +arc-mm-fix-build-failure.patch