summaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/compat.h
diff options
context:
space:
mode:
authorAndy Lutomirski2016-03-22 22:25:27 +0100
committerLinus Torvalds2016-03-22 23:36:02 +0100
commitf970165beeaa4803438e435d68022b3680a1a0b0 (patch)
treee8655e510222813198b423f60212838873329fdc /arch/x86/include/asm/compat.h
parentdrivers/hid/uhid.c: check write() bitness using in_compat_syscall (diff)
downloadkernel-qcow2-linux-f970165beeaa4803438e435d68022b3680a1a0b0.tar.gz
kernel-qcow2-linux-f970165beeaa4803438e435d68022b3680a1a0b0.tar.xz
kernel-qcow2-linux-f970165beeaa4803438e435d68022b3680a1a0b0.zip
x86/compat: remove is_compat_task()
x86's is_compat_task always checked the current syscall type, not the task type. It has no non-arch users any more, so just remove it to avoid confusion. On x86, nothing should really be checking the task ABI. There are legitimate users for the syscall ABI and for the mm ABI. Signed-off-by: Andy Lutomirski <luto@kernel.org> Cc: Ingo Molnar <mingo@elte.hu> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: "H. Peter Anvin" <hpa@zytor.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/x86/include/asm/compat.h')
-rw-r--r--arch/x86/include/asm/compat.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/include/asm/compat.h b/arch/x86/include/asm/compat.h
index acdee09228b3..ebb102e1bbc7 100644
--- a/arch/x86/include/asm/compat.h
+++ b/arch/x86/include/asm/compat.h
@@ -316,9 +316,10 @@ static inline bool is_x32_task(void)
return false;
}
-static inline bool is_compat_task(void)
+static inline bool in_compat_syscall(void)
{
return is_ia32_task() || is_x32_task();
}
+#define in_compat_syscall in_compat_syscall /* override the generic impl */
#endif /* _ASM_X86_COMPAT_H */