diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-12-25 20:24:38 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-02-03 15:09:24 -0500 |
commit | f482e1b4a4abf926507a4c1c6317acd3e7aa61b7 (patch) | |
tree | a179d84dac7e1f4ff609b0ca2308455ac2e82026 /fs/compat.c | |
parent | 495dfbf767553980dbd40a19a96a8ca5fa1be616 (diff) | |
download | linux-3.10-f482e1b4a4abf926507a4c1c6317acd3e7aa61b7.tar.gz linux-3.10-f482e1b4a4abf926507a4c1c6317acd3e7aa61b7.tar.bz2 linux-3.10-f482e1b4a4abf926507a4c1c6317acd3e7aa61b7.zip |
switch compat_sys_open* to COMPAT_SYSCALL_DEFINE
Diffstat (limited to 'fs/compat.c')
-rw-r--r-- | fs/compat.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/fs/compat.c b/fs/compat.c index 015e1e1f87c..f9e2fe3794f 100644 --- a/fs/compat.c +++ b/fs/compat.c @@ -1278,8 +1278,7 @@ compat_sys_vmsplice(int fd, const struct compat_iovec __user *iov32, * Exactly like fs/open.c:sys_open(), except that it doesn't set the * O_LARGEFILE flag. */ -asmlinkage long -compat_sys_open(const char __user *filename, int flags, umode_t mode) +COMPAT_SYSCALL_DEFINE3(open, const char __user *, filename, int, flags, umode_t, mode) { return do_sys_open(AT_FDCWD, filename, flags, mode); } @@ -1288,8 +1287,7 @@ compat_sys_open(const char __user *filename, int flags, umode_t mode) * Exactly like fs/open.c:sys_openat(), except that it doesn't set the * O_LARGEFILE flag. */ -asmlinkage long -compat_sys_openat(unsigned int dfd, const char __user *filename, int flags, umode_t mode) +COMPAT_SYSCALL_DEFINE4(openat, int, dfd, const char __user *, filename, int, flags, umode_t, mode) { return do_sys_open(dfd, filename, flags, mode); } @@ -1785,9 +1783,8 @@ asmlinkage long compat_sys_timerfd_gettime(int ufd, * Exactly like fs/open.c:sys_open_by_handle_at(), except that it * doesn't set the O_LARGEFILE flag. */ -asmlinkage long -compat_sys_open_by_handle_at(int mountdirfd, - struct file_handle __user *handle, int flags) +COMPAT_SYSCALL_DEFINE3(open_by_handle_at, int, mountdirfd, + struct file_handle __user *, handle, int, flags) { return do_handle_open(mountdirfd, handle, flags); } |