Lines Matching refs:pacl
165 struct smb_ntsd *pacl; in cifs_xattr_set() local
169 pacl = kmalloc(size, GFP_KERNEL); in cifs_xattr_set()
170 if (!pacl) { in cifs_xattr_set()
173 memcpy(pacl, value, size); in cifs_xattr_set()
195 rc = pTcon->ses->server->ops->set_acl(pacl, in cifs_xattr_set()
202 kfree(pacl); in cifs_xattr_set()
318 struct smb_ntsd *pacl; in cifs_xattr_get() local
328 pacl = pTcon->ses->server->ops->get_acl(cifs_sb, in cifs_xattr_get()
330 if (IS_ERR(pacl)) { in cifs_xattr_get()
331 rc = PTR_ERR(pacl); in cifs_xattr_get()
339 memcpy(value, pacl, acllen); in cifs_xattr_get()
342 kfree(pacl); in cifs_xattr_get()