]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
.28 patch
authorGreg Kroah-Hartman <gregkh@suse.de>
Fri, 13 Mar 2009 21:49:41 +0000 (14:49 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 13 Mar 2009 21:49:41 +0000 (14:49 -0700)
queue-2.6.28/mips-compat-implement-is_compat_task.patch [new file with mode: 0644]
queue-2.6.28/series

diff --git a/queue-2.6.28/mips-compat-implement-is_compat_task.patch b/queue-2.6.28/mips-compat-implement-is_compat_task.patch
new file mode 100644 (file)
index 0000000..1e8a6c4
--- /dev/null
@@ -0,0 +1,46 @@
+From 4302e5d53b9166d45317e3ddf0a7a9dab3efd43b Mon Sep 17 00:00:00 2001
+From: Ralf Baechle <ralf@linux-mips.org>
+Date: Thu, 5 Mar 2009 11:45:48 +0100
+Subject: MIPS: compat: Implement is_compat_task.
+
+From: Ralf Baechle <ralf@linux-mips.org>
+
+commit 4302e5d53b9166d45317e3ddf0a7a9dab3efd43b upstream.
+
+This is a build fix required after "x86-64: seccomp: fix 32/64 syscall
+hole" (commit 5b1017404aea6d2e552e991b3fd814d839e9cd67).  MIPS doesn't
+have the issue that was fixed for x86-64 by that patch.
+
+This also doesn't solve the N32 issue which is that N32 seccomp processes
+will be treated as non-compat processes thus only have access to N64
+syscalls.
+
+Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
+Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
+Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
+
+---
+ arch/mips/include/asm/compat.h |    7 +++++++
+ 1 file changed, 7 insertions(+)
+
+--- a/arch/mips/include/asm/compat.h
++++ b/arch/mips/include/asm/compat.h
+@@ -3,6 +3,8 @@
+ /*
+  * Architecture specific compatibility types
+  */
++#include <linux/seccomp.h>
++#include <linux/thread_info.h>
+ #include <linux/types.h>
+ #include <asm/page.h>
+ #include <asm/ptrace.h>
+@@ -218,4 +220,9 @@ struct compat_shmid64_ds {
+       compat_ulong_t  __unused2;
+ };
++static inline int is_compat_task(void)
++{
++      return test_thread_flag(TIF_32BIT);
++}
++
+ #endif /* _ASM_COMPAT_H */
index e4d1c0db3bb0cbb1171d7d335106b6daab712232..837dc446536714d3c7cdfd52ef21a96de27a6785 100644 (file)
@@ -109,3 +109,4 @@ acpi-fix-broken-usage-of-acpi_ut_get_node_name.patch
 crypto-api-fix-algorithm-test-race-that-broke-aead-initialisation.patch
 hwmon-hide-misleading-error-message.patch
 drm-i915-add-missing-userland-definitions-for-gem-init-execbuffer.patch
+mips-compat-implement-is_compat_task.patch