diff options
| author | Sascha Hauer <[email protected]> | 2021-03-04 13:35:40 +0100 |
|---|---|---|
| committer | Jan Kara <[email protected]> | 2021-03-17 15:51:17 +0100 |
| commit | fa8b90070a80bb1a3042b4b25af4b3ee2c4c27e1 (patch) | |
| tree | a2d23fdec748b1eba871a2860af2502346f1968c /include/linux/syscalls.h | |
| parent | 9dfa23c8de925041b7b45637a1a80a98a22f19dd (diff) | |
quota: wire up quotactl_path
Wire up the quotactl_path syscall added in the previous patch.
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Sascha Hauer <[email protected]>
Reviewed-by: Christoph Hellwig <[email protected]>
Signed-off-by: Jan Kara <[email protected]>
Diffstat (limited to 'include/linux/syscalls.h')
| -rw-r--r-- | include/linux/syscalls.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h index 2839dc9a7c01..a672bbe28577 100644 --- a/include/linux/syscalls.h +++ b/include/linux/syscalls.h @@ -483,6 +483,8 @@ asmlinkage long sys_pipe2(int __user *fildes, int flags); /* fs/quota.c */ asmlinkage long sys_quotactl(unsigned int cmd, const char __user *special, qid_t id, void __user *addr); +asmlinkage long sys_quotactl_path(unsigned int cmd, const char __user *mountpoint, + qid_t id, void __user *addr); /* fs/readdir.c */ asmlinkage long sys_getdents64(unsigned int fd, |
