diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2009-01-14 14:14:30 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-01-18 10:35:39 -0800 |
commit | bed9f5a735d89dcf265860f22a59c5028c0772d4 (patch) | |
tree | 346fc3f62543fd918fab467bc6c479caca4b087f /fs | |
parent | 5d06b3183f04cd4a65515da5f32a33db0a1a1c47 (diff) |
System call wrappers part 28
commit 938bb9f5e840eddbf54e4f62f6c5ba9b3ae12c9d upstream.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/inotify_user.c | 4 | ||||
-rw-r--r-- | fs/ioprio.c | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/fs/inotify_user.c b/fs/inotify_user.c index c1f9115acb3..78f28635ad2 100644 --- a/fs/inotify_user.c +++ b/fs/inotify_user.c @@ -579,7 +579,7 @@ static const struct inotify_operations inotify_user_ops = { .destroy_watch = free_inotify_user_watch, }; -asmlinkage long sys_inotify_init1(int flags) +SYSCALL_DEFINE1(inotify_init1, int, flags) { struct inotify_device *dev; struct inotify_handle *ih; @@ -658,7 +658,7 @@ out_put_fd: return ret; } -asmlinkage long sys_inotify_init(void) +SYSCALL_DEFINE0(inotify_init) { return sys_inotify_init1(0); } diff --git a/fs/ioprio.c b/fs/ioprio.c index da3cc460d4d..3715d7d2800 100644 --- a/fs/ioprio.c +++ b/fs/ioprio.c @@ -65,7 +65,7 @@ static int set_task_ioprio(struct task_struct *task, int ioprio) return err; } -asmlinkage long sys_ioprio_set(int which, int who, int ioprio) +SYSCALL_DEFINE3(ioprio_set, int, which, int, who, int, ioprio) { int class = IOPRIO_PRIO_CLASS(ioprio); int data = IOPRIO_PRIO_DATA(ioprio); @@ -181,7 +181,7 @@ int ioprio_best(unsigned short aprio, unsigned short bprio) return aprio; } -asmlinkage long sys_ioprio_get(int which, int who) +SYSCALL_DEFINE2(ioprio_get, int, which, int, who) { struct task_struct *g, *p; struct user_struct *user; @@ -245,4 +245,3 @@ asmlinkage long sys_ioprio_get(int which, int who) read_unlock(&tasklist_lock); return ret; } - |