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
var scope reduction
[trinity.git]
/
syscalls
/
flistxattr.c
blob
f3a290c273aafebe1f80c270b9c67147316738d5
1
/*
2
* SYSCALL_DEFINE3(flistxattr, int, fd, char __user *, list, size_t, size)
3
*/
4
#include
"sanitise.h"
5
6
struct
syscallentry syscall_flistxattr
= {
7
.
name
=
"flistxattr"
,
8
.
num_args
=
3
,
9
.
arg1name
=
"fd"
,
10
.
arg1type
=
ARG_FD
,
11
.
arg2name
=
"list"
,
12
.
arg2type
=
ARG_ADDRESS
,
13
.
arg3name
=
"size"
,
14
.
arg3type
=
ARG_LEN
,
15
.
rettype
=
RET_ZERO_SUCCESS
,
16
.
flags
=
NEED_ALARM
,
17
.
group
=
GROUP_VFS
,
18
};