Home
last modified time | relevance | path

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

/Linux-v5.4/fs/jfs/
Dacl.c20 char *ea_name; in jfs_get_acl() local
26 ea_name = XATTR_NAME_POSIX_ACL_ACCESS; in jfs_get_acl()
29 ea_name = XATTR_NAME_POSIX_ACL_DEFAULT; in jfs_get_acl()
35 size = __jfs_getxattr(inode, ea_name, NULL, 0); in jfs_get_acl()
41 size = __jfs_getxattr(inode, ea_name, value, size); in jfs_get_acl()
59 char *ea_name; in __jfs_set_acl() local
66 ea_name = XATTR_NAME_POSIX_ACL_ACCESS; in __jfs_set_acl()
69 ea_name = XATTR_NAME_POSIX_ACL_DEFAULT; in __jfs_set_acl()
84 rc = __jfs_setxattr(tid, inode, ea_name, value, size, 0); in __jfs_set_acl()
/Linux-v5.4/fs/xfs/
Dxfs_acl.c116 unsigned char *ea_name; in xfs_get_acl() local
124 ea_name = SGI_ACL_FILE; in xfs_get_acl()
127 ea_name = SGI_ACL_DEFAULT; in xfs_get_acl()
138 error = xfs_attr_get(ip, ea_name, (unsigned char **)&xfs_acl, &len, in xfs_get_acl()
159 unsigned char *ea_name; in __xfs_set_acl() local
164 ea_name = SGI_ACL_FILE; in __xfs_set_acl()
169 ea_name = SGI_ACL_DEFAULT; in __xfs_set_acl()
189 error = xfs_attr_set(ip, ea_name, (unsigned char *)xfs_acl, in __xfs_set_acl()
197 error = xfs_attr_remove(ip, ea_name, ATTR_ROOT); in __xfs_set_acl()
/Linux-v5.4/fs/cifs/
Dsmb2ops.c937 const unsigned char *ea_name) in move_smb2_ea_to_cifs() argument
940 unsigned int ea_name_len = ea_name ? strlen(ea_name) : 0; in move_smb2_ea_to_cifs()
960 if (ea_name) { in move_smb2_ea_to_cifs()
962 memcmp(ea_name, name, name_len) == 0) { in move_smb2_ea_to_cifs()
1010 if (ea_name) in move_smb2_ea_to_cifs()
1019 const unsigned char *path, const unsigned char *ea_name, in smb2_query_eas() argument
1048 if (!ea_name && rc == -ENODATA) in smb2_query_eas()
1064 le32_to_cpu(rsp->OutputBufferLength), ea_name); in smb2_query_eas()
1075 const char *path, const char *ea_name, const void *ea_value, in smb2_set_ea() argument
1081 int ea_name_len = strlen(ea_name); in smb2_set_ea()
[all …]
Dcifsproto.h504 const unsigned char *ea_name, char *EAData,
507 const char *fileName, const char *ea_name,
Dcifssmb.c6207 const unsigned char *searchName, const unsigned char *ea_name, in CIFSSMBQAllEAs() argument
6224 unsigned int ea_name_len = ea_name ? strlen(ea_name) : 0; in CIFSSMBQAllEAs()
6303 if (ea_name) in CIFSSMBQAllEAs()
6342 if (ea_name) { in CIFSSMBQAllEAs()
6344 memcmp(ea_name, temp_ptr, name_len) == 0) { in CIFSSMBQAllEAs()
6380 if (ea_name) in CIFSSMBQAllEAs()
6393 const char *fileName, const char *ea_name, const void *ea_value, in CIFSSMBSetEA() argument
6428 if (ea_name == NULL) in CIFSSMBSetEA()
6431 name_len = strnlen(ea_name, 255); in CIFSSMBSetEA()
6461 if (ea_name) in CIFSSMBSetEA()
[all …]
/Linux-v5.4/fs/ntfs/
Dlayout.h2388 u8 ea_name[0]; /* Name of the EA. Note this is ASCII, not member