add new renameat2 syscall
[trinity.git] / syscalls / quotactl.c
blob4429d3fb2990be939c4d5c5c81e157bbd8333657
1 /*
2 * SYSCALL_DEFINE4(quotactl, unsigned int, cmd, const char __user *, special,
3 qid_t, id, void __user *, addr)
4 */
5 #include "sanitise.h"
7 struct syscallentry syscall_quotactl = {
8 .name = "quotactl",
9 .num_args = 4,
10 .arg1name = "cmd",
11 .arg2name = "special",
12 .arg2type = ARG_ADDRESS,
13 .arg3name = "id",
14 .arg4name = "addr",
15 .arg4type = ARG_ADDRESS,
16 .group = GROUP_VFS,