Lines Matching refs:pacl
168 struct cifs_ntsd *pacl; in cifs_xattr_set() local
172 pacl = kmalloc(size, GFP_KERNEL); in cifs_xattr_set()
173 if (!pacl) { in cifs_xattr_set()
176 memcpy(pacl, value, size); in cifs_xattr_set()
183 pacl, size, inode, in cifs_xattr_set()
190 pacl, size, inode, in cifs_xattr_set()
199 kfree(pacl); in cifs_xattr_set()
333 struct cifs_ntsd *pacl; in cifs_xattr_get() local
338 pacl = pTcon->ses->server->ops->get_acl(cifs_sb, in cifs_xattr_get()
340 if (IS_ERR(pacl)) { in cifs_xattr_get()
341 rc = PTR_ERR(pacl); in cifs_xattr_get()
349 memcpy(value, pacl, acllen); in cifs_xattr_get()
352 kfree(pacl); in cifs_xattr_get()