aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorHeiko Carstens <heiko.carstens@de.ibm.com>2014-03-04 11:18:23 -0500
committerHeiko Carstens <heiko.carstens@de.ibm.com>2014-03-06 10:30:47 -0500
commit2f2728f6de9837abe4b354443a45be578fbbf942 (patch)
tree6305f0c201998040ee05d21fc178849c65e430e7 /include/linux
parentca2c405ab90591dcb1bc3765467cbdf2b99a0f6a (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 'include/linux')
-rw-r--r--include/linux/compat.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/linux/compat.h b/include/linux/compat.h
index ef4834c5bcab..7c765624b7ef 100644
--- a/include/linux/compat.h
+++ b/include/linux/compat.h
@@ -469,7 +469,7 @@ asmlinkage long compat_sys_timerfd_settime(int ufd, int flags,
469asmlinkage long compat_sys_timerfd_gettime(int ufd, 469asmlinkage long compat_sys_timerfd_gettime(int ufd,
470 struct compat_itimerspec __user *otmr); 470 struct compat_itimerspec __user *otmr);
471 471
472asmlinkage long compat_sys_move_pages(pid_t pid, unsigned long nr_page, 472asmlinkage long compat_sys_move_pages(pid_t pid, compat_ulong_t nr_pages,
473 __u32 __user *pages, 473 __u32 __user *pages,
474 const int __user *nodes, 474 const int __user *nodes,
475 int __user *status, 475 int __user *status,
@@ -674,12 +674,12 @@ extern void __user *compat_alloc_user_space(unsigned long len);
674 674
675asmlinkage ssize_t compat_sys_process_vm_readv(compat_pid_t pid, 675asmlinkage ssize_t compat_sys_process_vm_readv(compat_pid_t pid,
676 const struct compat_iovec __user *lvec, 676 const struct compat_iovec __user *lvec,
677 unsigned long liovcnt, const struct compat_iovec __user *rvec, 677 compat_ulong_t liovcnt, const struct compat_iovec __user *rvec,
678 unsigned long riovcnt, unsigned long flags); 678 compat_ulong_t riovcnt, compat_ulong_t flags);
679asmlinkage ssize_t compat_sys_process_vm_writev(compat_pid_t pid, 679asmlinkage ssize_t compat_sys_process_vm_writev(compat_pid_t pid,
680 const struct compat_iovec __user *lvec, 680 const struct compat_iovec __user *lvec,
681 unsigned long liovcnt, const struct compat_iovec __user *rvec, 681 compat_ulong_t liovcnt, const struct compat_iovec __user *rvec,
682 unsigned long riovcnt, unsigned long flags); 682 compat_ulong_t riovcnt, compat_ulong_t flags);
683 683
684asmlinkage long compat_sys_sendfile(int out_fd, int in_fd, 684asmlinkage long compat_sys_sendfile(int out_fd, int in_fd,
685 compat_off_t __user *offset, compat_size_t count); 685 compat_off_t __user *offset, compat_size_t count);