aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390/include/asm/compat.h
diff options
context:
space:
mode:
authorHeiko Carstens <heiko.carstens@de.ibm.com>2013-04-20 14:25:42 +0200
committerMartin Schwidefsky <schwidefsky@de.ibm.com>2013-04-23 10:18:10 +0200
commit0f58104c8c62e40c8734477b6a9308c77b5d9355 (patch)
tree4bb9a7cc09ba710f5729d00fc611a28f5595cf0a /arch/s390/include/asm/compat.h
parents390/compat: fix compat_sys_statfs() memory corruption (diff)
downloadlinux-dev-0f58104c8c62e40c8734477b6a9308c77b5d9355.tar.xz
linux-dev-0f58104c8c62e40c8734477b6a9308c77b5d9355.zip
s390/compat: fix compile error for !COMPAT
Fix this one for !COMPAT: compat.h: In function ‘arch_compat_alloc_user_space’: compat.h:292:2: error: implicit declaration of function ‘is_compat_task’ Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/include/asm/compat.h')
-rw-r--r--arch/s390/include/asm/compat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/s390/include/asm/compat.h b/arch/s390/include/asm/compat.h
index d967ac8d55d0..1f1a4490cdeb 100644
--- a/arch/s390/include/asm/compat.h
+++ b/arch/s390/include/asm/compat.h
@@ -248,8 +248,6 @@ static inline int is_compat_task(void)
return is_32bit_task();
}
-#endif
-
static inline void __user *arch_compat_alloc_user_space(long len)
{
unsigned long stack;
@@ -260,6 +258,8 @@ static inline void __user *arch_compat_alloc_user_space(long len)
return (void __user *) (stack - len);
}
+#endif
+
struct compat_ipc64_perm {
compat_key_t key;
__compat_uid32_t uid;