diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2009-01-14 14:14:22 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-01-18 10:35:38 -0800 |
commit | 373102bf6c48a6740205ddb0b1f1d578961335e5 (patch) | |
tree | 324bdc5141554009a650c724fa14afd66e2d8469 /fs/quota.c | |
parent | 5b58ce246a7cf1aff2ca1e33acac07f665954fce (diff) |
System call wrappers part 20
commit 3cdad42884bbd95d5aa01297e8236ea1bad70053 upstream.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'fs/quota.c')
-rw-r--r-- | fs/quota.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/quota.c b/fs/quota.c index 7f4386ebc23a..e9851afa31b5 100644 --- a/fs/quota.c +++ b/fs/quota.c @@ -368,7 +368,8 @@ static inline struct super_block *quotactl_block(const char __user *special) * calls. Maybe we need to add the process quotas etc. in the future, * but we probably should use rlimits for that. */ -asmlinkage long sys_quotactl(unsigned int cmd, const char __user *special, qid_t id, void __user *addr) +SYSCALL_DEFINE4(quotactl, unsigned int, cmd, const char __user *, special, + qid_t, id, void __user *, addr) { uint cmds, type; struct super_block *sb = NULL; |