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
make-it-fail fixes
[trinity.git]
/
syscalls
/
llistxattr.c
blob
10217f76abe7f0b101017728f58713e8f7966442
1
/*
2
* SYSCALL_DEFINE3(llistxattr, const char __user *, pathname, char __user *, list, size_t, size)
3
*/
4
#include
"sanitise.h"
5
6
struct
syscallentry syscall_llistxattr
= {
7
.
name
=
"llistxattr"
,
8
.
arg1name
=
"pathname"
,
9
.
arg1type
=
ARG_PATHNAME
,
10
.
arg2name
=
"list"
,
11
.
arg2type
=
ARG_ADDRESS
,
12
.
arg3name
=
"size"
,
13
.
arg3type
=
ARG_LEN
,
14
.
num_args
=
3
,
15
.
group
=
GROUP_VFS
,
16
};