repo.or.cz
/
trinity.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
move_pages: just use calloc
[trinity.git]
/
syscalls
/
quotactl.c
blob
4429d3fb2990be939c4d5c5c81e157bbd8333657
1
/*
2
* SYSCALL_DEFINE4(quotactl, unsigned int, cmd, const char __user *, special,
3
qid_t, id, void __user *, addr)
4
*/
5
#include
"sanitise.h"
6
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
,
17
};