/* * SYSCALL_DEFINE2(fremovexattr, int, fd, const char __user *, name) */ #include "sanitise.h" struct syscallentry syscall_fremovexattr = { .name = "fremovexattr", .num_args = 2, .arg1name = "fd", .arg1type = ARG_FD, .arg2name = "name", .arg2type = ARG_ADDRESS, .rettype = RET_ZERO_SUCCESS, .flags = NEED_ALARM, .group = GROUP_VFS, }; .