Lines Matching refs:acl
54 int acl; in xfs_xattr_system_get() local
56 acl = xfs_decode_acl(name); in xfs_xattr_system_get()
57 if (acl < 0) in xfs_xattr_system_get()
58 return acl; in xfs_xattr_system_get()
60 return xfs_acl_vget(inode, buffer, size, acl); in xfs_xattr_system_get()
67 int acl; in xfs_xattr_system_set() local
69 acl = xfs_decode_acl(name); in xfs_xattr_system_set()
70 if (acl < 0) in xfs_xattr_system_set()
71 return acl; in xfs_xattr_system_set()
76 return xfs_acl_vremove(inode, acl); in xfs_xattr_system_set()
78 return xfs_acl_vset(inode, (void *)value, size, acl); in xfs_xattr_system_set()