/* * SYSCALL_DEFINE1(syncfs, int, fd) */ #include "sanitise.h" struct syscallentry syscall_syncfs = { .name = "syncfs", .num_args = 1, .arg1name = "fd", .arg1type = ARG_FD, .flags = NEED_ALARM, .group = GROUP_VFS, }; .