]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
3.14-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 26 Apr 2015 17:11:39 +0000 (19:11 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 26 Apr 2015 17:11:39 +0000 (19:11 +0200)
added patches:
arc-mm-fix-build-failure.patch

queue-3.14/arc-mm-fix-build-failure.patch [new file with mode: 0644]
queue-3.14/series

diff --git a/queue-3.14/arc-mm-fix-build-failure.patch b/queue-3.14/arc-mm-fix-build-failure.patch
new file mode 100644 (file)
index 0000000..cc2904f
--- /dev/null
@@ -0,0 +1,31 @@
+From e262eb9381ad51b5de7a9e762ee773bbd25ce650 Mon Sep 17 00:00:00 2001
+From: Guenter Roeck <linux@roeck-us.net>
+Date: Thu, 29 Jan 2015 19:15:33 -0800
+Subject: arc: mm: Fix build failure
+
+From: Guenter Roeck <linux@roeck-us.net>
+
+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>
+
+---
+ 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
+@@ -162,7 +162,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;
index c6c4f2dd85d929f1b16635ffd9873ce6b2e732df..6614c506263151f357cc17b4b8d2082120a8f0fd 100644 (file)
@@ -40,3 +40,4 @@ 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
 mm-softdirty-unmapped-addresses-between-vmas-are-clean.patch
 proc-pagemap-walk-page-tables-under-pte-lock.patch
+arc-mm-fix-build-failure.patch