diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2009-01-14 14:14:31 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-01-18 10:35:39 -0800 |
commit | 0bcd03dcd8dd3842bdba07a4b202cc4cdbfa275e (patch) | |
tree | dadfcaac0d36c3a486c94cf79c01f44a199fb0dd /fs/inotify_user.c | |
parent | bed9f5a735d89dcf265860f22a59c5028c0772d4 (diff) |
System call wrappers part 29
commit 2e4d0924eb0c403ce4014fa139d1d61bf2c44fee upstream.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'fs/inotify_user.c')
-rw-r--r-- | fs/inotify_user.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/inotify_user.c b/fs/inotify_user.c index 78f28635ad2..a13f487f42f 100644 --- a/fs/inotify_user.c +++ b/fs/inotify_user.c @@ -663,7 +663,8 @@ SYSCALL_DEFINE0(inotify_init) return sys_inotify_init1(0); } -asmlinkage long sys_inotify_add_watch(int fd, const char __user *pathname, u32 mask) +SYSCALL_DEFINE3(inotify_add_watch, int, fd, const char __user *, pathname, + u32, mask) { struct inode *inode; struct inotify_device *dev; @@ -707,7 +708,7 @@ fput_and_out: return ret; } -asmlinkage long sys_inotify_rm_watch(int fd, __s32 wd) +SYSCALL_DEFINE2(inotify_rm_watch, int, fd, __s32, wd) { struct file *filp; struct inotify_device *dev; |