search for: sys_setxattr

Displaying 2 results from an estimated 2 matches for "sys_setxattr".

Did you mean: sys_lsetxattr
2006 Dec 14
1
Compilation error on Mac OS X 10.4.7
...#39; lib/system.c: In function 'sys_removexattr': lib/system.c:1759: error: too few arguments to function 'removexattr' lib/system.c: In function 'sys_fremovexattr': lib/system.c:1811: error: too few arguments to function 'fremovexattr' lib/system.c: In function 'sys_setxattr': lib/system.c:1842: error: too few arguments to function 'setxattr' lib/system.c: In function 'sys_fsetxattr': lib/system.c:1939: error: too few arguments to function 'fsetxattr' Since I am a C programmer, I looked at the prototype for getxattr. It is ssize_t getxattr...
2009 Nov 10
12
[RFC] big fat transaction ioctl
...rgs[0], + op.args[1]); + break; + case BTRFS_IOC_UT_OP_RMDIR: + ret = sys_rmdir((const char __user *)op.args[0]); + break; + case BTRFS_IOC_UT_OP_TRUNCATE: + ret = sys_truncate((const char __user *)op.args[0], + op.args[1]); + break; + case BTRFS_IOC_UT_OP_SETXATTR: + ret = sys_setxattr((char __user *)op.args[0], + (char __user *)op.args[1], + (void __user *)op.args[2], + op.args[3], op.args[4]); + break; + case BTRFS_IOC_UT_OP_REMOVEXATTR: + ret = sys_removexattr((char __user *)op.args[0], + (char __user *)op.args[1]); + break; + case BTRFS_...