diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2009-01-14 14:14:34 +0100 |
---|---|---|
committer | Heiko Carstens <heiko.carstens@de.ibm.com> | 2009-01-14 14:15:31 +0100 |
commit | d4e82042c4cfa87a7d51710b71f568fe80132551 (patch) | |
tree | 202c311b52f4e4db9fbbbd80607744e2aa2e5885 /fs/eventfd.c | |
parent | 836f92adf121f806e9beb5b6b88bd5c9c4ea3f24 (diff) | |
download | linux-d4e82042c4cfa87a7d51710b71f568fe80132551.tar.gz linux-d4e82042c4cfa87a7d51710b71f568fe80132551.tar.bz2 linux-d4e82042c4cfa87a7d51710b71f568fe80132551.zip |
[CVE-2009-0029] System call wrappers part 32
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Diffstat (limited to 'fs/eventfd.c')
-rw-r--r-- | fs/eventfd.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/eventfd.c b/fs/eventfd.c index 08bf558d0408..5de2c2db3aa2 100644 --- a/fs/eventfd.c +++ b/fs/eventfd.c @@ -198,7 +198,7 @@ struct file *eventfd_fget(int fd) return file; } -asmlinkage long sys_eventfd2(unsigned int count, int flags) +SYSCALL_DEFINE2(eventfd2, unsigned int, count, int, flags) { int fd; struct eventfd_ctx *ctx; @@ -228,8 +228,7 @@ asmlinkage long sys_eventfd2(unsigned int count, int flags) return fd; } -asmlinkage long sys_eventfd(unsigned int count) +SYSCALL_DEFINE1(eventfd, unsigned int, count) { return sys_eventfd2(count, 0); } - |