Lines Matching refs:pacl
172 struct cifs_ntsd *pacl; in cifs_setxattr() local
173 pacl = kmalloc(value_size, GFP_KERNEL); in cifs_setxattr()
174 if (!pacl) { in cifs_setxattr()
177 memcpy(pacl, ea_value, value_size); in cifs_setxattr()
179 rc = pTcon->ses->server->ops->set_acl(pacl, in cifs_setxattr()
186 kfree(pacl); in cifs_setxattr()
321 struct cifs_ntsd *pacl; in cifs_getxattr() local
326 pacl = pTcon->ses->server->ops->get_acl(cifs_sb, in cifs_getxattr()
328 if (IS_ERR(pacl)) { in cifs_getxattr()
329 rc = PTR_ERR(pacl); in cifs_getxattr()
337 memcpy(ea_value, pacl, acllen); in cifs_getxattr()
340 kfree(pacl); in cifs_getxattr()