Lines Matching defs:cifs_acl
2894 struct cifs_posix_acl *cifs_acl = (struct cifs_posix_acl *)src;
2898 if (le16_to_cpu(cifs_acl->version) != CIFS_ACL_VERSION)
2902 count = le16_to_cpu(cifs_acl->access_entry_count);
2903 pACE = &cifs_acl->ace_array[0];
2913 count = le16_to_cpu(cifs_acl->access_entry_count);
2917 pACE = &cifs_acl->ace_array[count];
2918 count = le16_to_cpu(cifs_acl->default_entry_count);
2979 struct cifs_posix_acl *cifs_acl = (struct cifs_posix_acl *)parm_data;
2984 if ((acl == NULL) || (cifs_acl == NULL))
2997 cifs_acl->version = cpu_to_le16(1);
2999 cifs_acl->access_entry_count = cpu_to_le16(count);
3000 cifs_acl->default_entry_count = cpu_to_le16(0xFFFF);
3002 cifs_acl->default_entry_count = cpu_to_le16(count);
3003 cifs_acl->access_entry_count = cpu_to_le16(0xFFFF);
3009 cifs_init_ace(&cifs_acl->ace_array[i++], pa);