Searched refs:dacl (Results 1 – 4 of 4) sorted by relevance
/linux-6.12.1/fs/9p/ |
D | acl.c | 81 struct posix_acl *pacl, *dacl; in v9fs_get_acl() local 92 dacl = __v9fs_get_acl(fid, XATTR_NAME_POSIX_ACL_DEFAULT); in v9fs_get_acl() 95 if (!IS_ERR(dacl) && !IS_ERR(pacl)) { in v9fs_get_acl() 96 set_cached_acl(inode, ACL_TYPE_DEFAULT, dacl); in v9fs_get_acl() 101 if (!IS_ERR(dacl)) in v9fs_get_acl() 102 posix_acl_release(dacl); in v9fs_get_acl() 302 struct posix_acl *dacl, struct posix_acl *acl) in v9fs_set_create_acl() argument 304 set_cached_acl(inode, ACL_TYPE_DEFAULT, dacl); in v9fs_set_create_acl() 306 v9fs_set_acl(fid, ACL_TYPE_DEFAULT, dacl); in v9fs_set_create_acl() 311 void v9fs_put_acl(struct posix_acl *dacl, in v9fs_put_acl() argument [all …]
|
D | acl.h | 19 struct posix_acl *dacl, struct posix_acl *acl); 22 void v9fs_put_acl(struct posix_acl *dacl, struct posix_acl *acl); 37 struct posix_acl *dacl, in v9fs_set_create_acl() argument 42 static inline void v9fs_put_acl(struct posix_acl *dacl, in v9fs_put_acl() argument
|
D | vfs_inode_dotl.c | 240 struct posix_acl *pacl = NULL, *dacl = NULL; in v9fs_vfs_atomic_open_dotl() local 281 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl); in v9fs_vfs_atomic_open_dotl() 315 v9fs_set_create_acl(inode, fid, dacl, pacl); in v9fs_vfs_atomic_open_dotl() 339 v9fs_put_acl(dacl, pacl); in v9fs_vfs_atomic_open_dotl() 365 struct posix_acl *dacl = NULL, *pacl = NULL; in v9fs_vfs_mkdir_dotl() local 384 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl); in v9fs_vfs_mkdir_dotl() 411 v9fs_set_create_acl(inode, fid, dacl, pacl); in v9fs_vfs_mkdir_dotl() 418 v9fs_put_acl(dacl, pacl); in v9fs_vfs_mkdir_dotl() 804 struct posix_acl *dacl = NULL, *pacl = NULL; in v9fs_vfs_mknod_dotl() local 821 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl); in v9fs_vfs_mknod_dotl() [all …]
|
/linux-6.12.1/fs/ntfs3/ |
D | fsntfs.c | 1844 const struct ACL *dacl = Add2Ptr(sd, sd_dacl); in is_sd_valid() local 1849 if (!is_acl_valid(dacl, len - sd_dacl)) in is_sd_valid()
|