diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2014-03-04 11:18:23 -0500 |
---|---|---|
committer | Heiko Carstens <heiko.carstens@de.ibm.com> | 2014-03-06 10:30:47 -0500 |
commit | 2f2728f6de9837abe4b354443a45be578fbbf942 (patch) | |
tree | 6305f0c201998040ee05d21fc178849c65e430e7 /kernel/compat.c | |
parent | ca2c405ab90591dcb1bc3765467cbdf2b99a0f6a (diff) |
mm/compat: convert to COMPAT_SYSCALL_DEFINE with changing parameter types
In order to allow the COMPAT_SYSCALL_DEFINE macro generate code that
performs proper zero and sign extension convert all 64 bit parameters
to their corresponding 32 bit compat counterparts.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Diffstat (limited to 'kernel/compat.c')
-rw-r--r-- | kernel/compat.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kernel/compat.c b/kernel/compat.c index 2622011a44c9..488ff8c4cf48 100644 --- a/kernel/compat.c +++ b/kernel/compat.c | |||
@@ -1065,11 +1065,11 @@ COMPAT_SYSCALL_DEFINE1(adjtimex, struct compat_timex __user *, utp) | |||
1065 | } | 1065 | } |
1066 | 1066 | ||
1067 | #ifdef CONFIG_NUMA | 1067 | #ifdef CONFIG_NUMA |
1068 | asmlinkage long compat_sys_move_pages(pid_t pid, unsigned long nr_pages, | 1068 | COMPAT_SYSCALL_DEFINE6(move_pages, pid_t, pid, compat_ulong_t, nr_pages, |
1069 | compat_uptr_t __user *pages32, | 1069 | compat_uptr_t __user *, pages32, |
1070 | const int __user *nodes, | 1070 | const int __user *, nodes, |
1071 | int __user *status, | 1071 | int __user *, status, |
1072 | int flags) | 1072 | int, flags) |
1073 | { | 1073 | { |
1074 | const void __user * __user *pages; | 1074 | const void __user * __user *pages; |
1075 | int i; | 1075 | int i; |