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
note a leak that needs fixing eventually
[trinity.git]
/
syscalls
/
fremovexattr.c
blob
bdb65c80c7a63aede2c573faaf33d3225000f60f
1
/*
2
* SYSCALL_DEFINE2(fremovexattr, int, fd, const char __user *, name)
3
*/
4
#include
"sanitise.h"
5
6
struct
syscallentry syscall_fremovexattr
= {
7
.
name
=
"fremovexattr"
,
8
.
num_args
=
2
,
9
.
arg1name
=
"fd"
,
10
.
arg1type
=
ARG_FD
,
11
.
arg2name
=
"name"
,
12
.
arg2type
=
ARG_ADDRESS
,
13
.
rettype
=
RET_ZERO_SUCCESS
,
14
.
flags
=
NEED_ALARM
,
15
.
group
=
GROUP_VFS
,
16
};