remove [64] cleanup TODO
[trinity.git] / syscalls / flistxattr.c
blobf3a290c273aafebe1f80c270b9c67147316738d5
1 /*
2 * SYSCALL_DEFINE3(flistxattr, int, fd, char __user *, list, size_t, size)
3 */
4 #include "sanitise.h"
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,