move_pages: just use calloc
[trinity.git] / syscalls / lgetxattr.c
blobc951fd3d38bc4ee782652036a6d3b0c430fdf070
1 /*
2 * SYSCALL_DEFINE4(lgetxattr, const char __user *, pathname,
3 const char __user *, name, void __user *, value, size_t, size)
4 */
5 #include "sanitise.h"
7 struct syscallentry syscall_lgetxattr = {
8 .name = "lgetxattr",
9 .num_args = 4,
10 .arg1name = "pathname",
11 .arg1type = ARG_PATHNAME,
12 .arg2name = "name",
13 .arg2type = ARG_ADDRESS,
14 .arg3name = "value",
15 .arg3type = ARG_ADDRESS,
16 .arg4name = "size",
17 .arg4type = ARG_LEN,
18 .group = GROUP_VFS,