Home
last modified time | relevance | path

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

/Linux-v4.19/fs/jfs/
Dacl.c33 char *ea_name; in jfs_get_acl() local
39 ea_name = XATTR_NAME_POSIX_ACL_ACCESS; in jfs_get_acl()
42 ea_name = XATTR_NAME_POSIX_ACL_DEFAULT; in jfs_get_acl()
48 size = __jfs_getxattr(inode, ea_name, NULL, 0); in jfs_get_acl()
54 size = __jfs_getxattr(inode, ea_name, value, size); in jfs_get_acl()
72 char *ea_name; in __jfs_set_acl() local
79 ea_name = XATTR_NAME_POSIX_ACL_ACCESS; in __jfs_set_acl()
82 ea_name = XATTR_NAME_POSIX_ACL_DEFAULT; in __jfs_set_acl()
97 rc = __jfs_setxattr(tid, inode, ea_name, value, size, 0); in __jfs_set_acl()
/Linux-v4.19/fs/xfs/
Dxfs_acl.c118 unsigned char *ea_name; in xfs_get_acl() local
126 ea_name = SGI_ACL_FILE; in xfs_get_acl()
129 ea_name = SGI_ACL_DEFAULT; in xfs_get_acl()
144 error = xfs_attr_get(ip, ea_name, (unsigned char *)xfs_acl, in xfs_get_acl()
165 unsigned char *ea_name; in __xfs_set_acl() local
170 ea_name = SGI_ACL_FILE; in __xfs_set_acl()
175 ea_name = SGI_ACL_DEFAULT; in __xfs_set_acl()
195 error = xfs_attr_set(ip, ea_name, (unsigned char *)xfs_acl, in __xfs_set_acl()
203 error = xfs_attr_remove(ip, ea_name, ATTR_ROOT); in __xfs_set_acl()
/Linux-v4.19/fs/cifs/
Dsmb2ops.c684 const unsigned char *ea_name) in move_smb2_ea_to_cifs() argument
687 unsigned int ea_name_len = ea_name ? strlen(ea_name) : 0; in move_smb2_ea_to_cifs()
707 if (ea_name) { in move_smb2_ea_to_cifs()
709 memcmp(ea_name, name, name_len) == 0) { in move_smb2_ea_to_cifs()
757 if (ea_name) in move_smb2_ea_to_cifs()
766 const unsigned char *path, const unsigned char *ea_name, in smb2_query_eas() argument
833 SMB2_MAX_EA_BUF, ea_name); in smb2_query_eas()
834 else if (!ea_name && rc == -ENODATA) in smb2_query_eas()
844 const char *path, const char *ea_name, const void *ea_value, in smb2_set_ea() argument
854 int ea_name_len = strlen(ea_name); in smb2_set_ea()
[all …]
Dcifsproto.h495 const unsigned char *ea_name, char *EAData,
498 const char *fileName, const char *ea_name,
Dcifssmb.c6137 const unsigned char *searchName, const unsigned char *ea_name, in CIFSSMBQAllEAs() argument
6154 unsigned int ea_name_len = ea_name ? strlen(ea_name) : 0; in CIFSSMBQAllEAs()
6235 if (ea_name) in CIFSSMBQAllEAs()
6274 if (ea_name) { in CIFSSMBQAllEAs()
6276 memcmp(ea_name, temp_ptr, name_len) == 0) { in CIFSSMBQAllEAs()
6312 if (ea_name) in CIFSSMBQAllEAs()
6325 const char *fileName, const char *ea_name, const void *ea_value, in CIFSSMBSetEA() argument
6362 if (ea_name == NULL) in CIFSSMBSetEA()
6365 name_len = strnlen(ea_name, 255); in CIFSSMBSetEA()
6395 if (ea_name) in CIFSSMBSetEA()
[all …]
/Linux-v4.19/fs/ntfs/
Dlayout.h2402 u8 ea_name[0]; /* Name of the EA. Note this is ASCII, not member