Home
last modified time | relevance | path

Searched refs:ea_name (Results 1 – 6 of 6) sorted by relevance

/fs/cifs/
Dxattr.c40 int cifs_removexattr(struct dentry *direntry, const char *ea_name) in cifs_removexattr() argument
72 if (ea_name == NULL) { in cifs_removexattr()
74 } else if (strncmp(ea_name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN) in cifs_removexattr()
75 && (strncmp(ea_name, XATTR_OS2_PREFIX, XATTR_OS2_PREFIX_LEN))) { in cifs_removexattr()
78 ea_name); in cifs_removexattr()
86 ea_name += XATTR_USER_PREFIX_LEN; /* skip past user. prefix */ in cifs_removexattr()
89 full_path, ea_name, NULL, (__u16)0, in cifs_removexattr()
100 int cifs_setxattr(struct dentry *direntry, const char *ea_name, in cifs_setxattr() argument
145 if (ea_name == NULL) { in cifs_setxattr()
147 } else if (strncmp(ea_name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN) in cifs_setxattr()
[all …]
Dcifsproto.h467 const unsigned char *ea_name, char *EAData,
471 const char *fileName, const char *ea_name,
Dcifssmb.c6205 const unsigned char *searchName, const unsigned char *ea_name, in CIFSSMBQAllEAs() argument
6220 unsigned int ea_name_len = ea_name ? strlen(ea_name) : 0; in CIFSSMBQAllEAs()
6301 if (ea_name) in CIFSSMBQAllEAs()
6340 if (ea_name) { in CIFSSMBQAllEAs()
6342 memcmp(ea_name, temp_ptr, name_len) == 0) { in CIFSSMBQAllEAs()
6378 if (ea_name) in CIFSSMBQAllEAs()
6391 const char *fileName, const char *ea_name, const void *ea_value, in CIFSSMBSetEA() argument
6427 if (ea_name == NULL) in CIFSSMBSetEA()
6430 name_len = strnlen(ea_name, 255); in CIFSSMBSetEA()
6460 if (ea_name) in CIFSSMBSetEA()
[all …]
/fs/jfs/
Dacl.c33 char *ea_name; in jfs_get_acl() local
43 ea_name = POSIX_ACL_XATTR_ACCESS; in jfs_get_acl()
46 ea_name = POSIX_ACL_XATTR_DEFAULT; in jfs_get_acl()
52 size = __jfs_getxattr(inode, ea_name, NULL, 0); in jfs_get_acl()
58 size = __jfs_getxattr(inode, ea_name, value, size); in jfs_get_acl()
78 char *ea_name; in __jfs_set_acl() local
85 ea_name = POSIX_ACL_XATTR_ACCESS; in __jfs_set_acl()
95 ea_name = POSIX_ACL_XATTR_DEFAULT; in __jfs_set_acl()
110 rc = __jfs_setxattr(tid, inode, ea_name, value, size, 0); in __jfs_set_acl()
/fs/xfs/
Dxfs_acl.c130 unsigned char *ea_name; in xfs_get_acl() local
138 ea_name = SGI_ACL_FILE; in xfs_get_acl()
141 ea_name = SGI_ACL_DEFAULT; in xfs_get_acl()
156 error = xfs_attr_get(ip, ea_name, (unsigned char *)xfs_acl, in xfs_get_acl()
185 unsigned char *ea_name; in __xfs_set_acl() local
190 ea_name = SGI_ACL_FILE; in __xfs_set_acl()
195 ea_name = SGI_ACL_DEFAULT; in __xfs_set_acl()
215 error = xfs_attr_set(ip, ea_name, (unsigned char *)xfs_acl, in __xfs_set_acl()
223 error = xfs_attr_remove(ip, ea_name, ATTR_ROOT); in __xfs_set_acl()
/fs/ntfs/
Dlayout.h2402 u8 ea_name[0]; /* Name of the EA. Note this is ASCII, not member