Lines Matching refs:pacl
162 struct cifs_ntsd *pacl; in cifs_xattr_set() local
166 pacl = kmalloc(size, GFP_KERNEL); in cifs_xattr_set()
167 if (!pacl) { in cifs_xattr_set()
170 memcpy(pacl, value, size); in cifs_xattr_set()
192 rc = pTcon->ses->server->ops->set_acl(pacl, in cifs_xattr_set()
199 kfree(pacl); in cifs_xattr_set()
341 struct cifs_ntsd *pacl; in cifs_xattr_get() local
351 pacl = pTcon->ses->server->ops->get_acl(cifs_sb, in cifs_xattr_get()
353 if (IS_ERR(pacl)) { in cifs_xattr_get()
354 rc = PTR_ERR(pacl); in cifs_xattr_get()
362 memcpy(value, pacl, acllen); in cifs_xattr_get()
365 kfree(pacl); in cifs_xattr_get()