[CVE-2009-0029] System call wrappers part 29

Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
This commit is contained in:
Heiko Carstens
2009-01-14 14:14:31 +01:00
parent 938bb9f5e8
commit 2e4d0924eb
2 changed files with 13 additions and 13 deletions

View File

@@ -660,7 +660,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;
@@ -704,7 +705,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;