Home
last modified time | relevance | path

Searched refs:pacl (Results 1 – 6 of 6) sorted by relevance

/fs/nfsd/
Dnfs4acl.c134 struct posix_acl *pacl = NULL, *dpacl = NULL; in nfsd4_get_nfs4_acl() local
138 pacl = get_acl(inode, ACL_TYPE_ACCESS); in nfsd4_get_nfs4_acl()
139 if (!pacl) in nfsd4_get_nfs4_acl()
140 pacl = posix_acl_from_mode(inode->i_mode, GFP_KERNEL); in nfsd4_get_nfs4_acl()
142 if (IS_ERR(pacl)) in nfsd4_get_nfs4_acl()
143 return PTR_ERR(pacl); in nfsd4_get_nfs4_acl()
146 size += 2 * pacl->a_count; in nfsd4_get_nfs4_acl()
167 _posix_to_nfsv4_one(pacl, *acl, flags & ~NFS4_ACL_TYPE_DEFAULT); in nfsd4_get_nfs4_acl()
175 posix_acl_release(pacl); in nfsd4_get_nfs4_acl()
233 _posix_to_nfsv4_one(struct posix_acl *pacl, struct nfs4_acl *acl, in _posix_to_nfsv4_one() argument
[all …]
/fs/cifs/
Dxattr.c99 struct cifs_ntsd *pacl; in cifs_xattr_set() local
103 pacl = kmalloc(size, GFP_KERNEL); in cifs_xattr_set()
104 if (!pacl) { in cifs_xattr_set()
107 memcpy(pacl, value, size); in cifs_xattr_set()
110 rc = pTcon->ses->server->ops->set_acl(pacl, in cifs_xattr_set()
117 kfree(pacl); in cifs_xattr_set()
249 struct cifs_ntsd *pacl; in cifs_xattr_get() local
254 pacl = pTcon->ses->server->ops->get_acl(cifs_sb, in cifs_xattr_get()
256 if (IS_ERR(pacl)) { in cifs_xattr_get()
257 rc = PTR_ERR(pacl); in cifs_xattr_get()
[all …]
/fs/9p/
Dacl.c59 struct posix_acl *pacl, *dacl; in v9fs_get_acl() local
71 pacl = __v9fs_get_acl(fid, XATTR_NAME_POSIX_ACL_ACCESS); in v9fs_get_acl()
73 if (!IS_ERR(dacl) && !IS_ERR(pacl)) { in v9fs_get_acl()
75 set_cached_acl(inode, ACL_TYPE_ACCESS, pacl); in v9fs_get_acl()
82 if (!IS_ERR(pacl)) in v9fs_get_acl()
83 posix_acl_release(pacl); in v9fs_get_acl()
187 struct posix_acl **dpacl, struct posix_acl **pacl) in v9fs_acl_mode() argument
207 *pacl = acl; in v9fs_acl_mode()
Dvfs_inode_dotl.c241 struct posix_acl *pacl = NULL, *dacl = NULL; in v9fs_vfs_atomic_open_dotl() local
282 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl); in v9fs_vfs_atomic_open_dotl()
312 v9fs_set_create_acl(inode, fid, dacl, pacl); in v9fs_vfs_atomic_open_dotl()
347 v9fs_put_acl(dacl, pacl); in v9fs_vfs_atomic_open_dotl()
379 struct posix_acl *dacl = NULL, *pacl = NULL; in v9fs_vfs_mkdir_dotl() local
400 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl); in v9fs_vfs_mkdir_dotl()
430 v9fs_set_create_acl(inode, fid, dacl, pacl); in v9fs_vfs_mkdir_dotl()
445 v9fs_set_create_acl(inode, fid, dacl, pacl); in v9fs_vfs_mkdir_dotl()
453 v9fs_put_acl(dacl, pacl); in v9fs_vfs_mkdir_dotl()
809 struct posix_acl *dacl = NULL, *pacl = NULL; in v9fs_vfs_mknod_dotl() local
[all …]
Dacl.h24 struct posix_acl **dpacl, struct posix_acl **pacl);
49 struct posix_acl **pacl) in v9fs_acl_mode() argument
/fs/nfs_common/
Dnfsacl.c266 struct posix_acl **pacl) in nfsacl_decode() argument
271 .xcode = pacl ? xdr_nfsace_decode : NULL, in nfsacl_decode()
284 if (pacl) { in nfsacl_decode()
290 *pacl = nfsacl_desc.acl; in nfsacl_decode()