Searched refs:ea_name (Results 1 – 6 of 6) sorted by relevance
/linux-3.4.99/fs/cifs/ ! |
D | xattr.c | 38 int cifs_removexattr(struct dentry *direntry, const char *ea_name) in cifs_removexattr() argument 70 if (ea_name == NULL) { in cifs_removexattr() 72 } else if (strncmp(ea_name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN) in cifs_removexattr() 73 && (strncmp(ea_name, XATTR_OS2_PREFIX, XATTR_OS2_PREFIX_LEN))) { in cifs_removexattr() 76 ea_name); in cifs_removexattr() 84 ea_name += XATTR_USER_PREFIX_LEN; /* skip past user. prefix */ in cifs_removexattr() 85 rc = CIFSSMBSetEA(xid, pTcon, full_path, ea_name, NULL, in cifs_removexattr() 97 int cifs_setxattr(struct dentry *direntry, const char *ea_name, in cifs_setxattr() argument 142 if (ea_name == NULL) { in cifs_setxattr() 144 } else if (strncmp(ea_name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN) in cifs_setxattr() [all …]
|
D | cifsproto.h | 435 const unsigned char *ea_name, char *EAData, 439 const char *fileName, const char *ea_name,
|
D | cifssmb.c | 6160 const unsigned char *searchName, const unsigned char *ea_name, in CIFSSMBQAllEAs() argument 6175 unsigned int ea_name_len = ea_name ? strlen(ea_name) : 0; in CIFSSMBQAllEAs() 6292 if (ea_name) { in CIFSSMBQAllEAs() 6294 memcmp(ea_name, temp_ptr, name_len) == 0) { in CIFSSMBQAllEAs() 6330 if (ea_name) in CIFSSMBQAllEAs() 6343 const char *ea_name, const void *ea_value, in CIFSSMBSetEA() argument 6379 if (ea_name == NULL) in CIFSSMBSetEA() 6382 name_len = strnlen(ea_name, 255); in CIFSSMBSetEA() 6414 if (ea_name) in CIFSSMBSetEA() 6415 strncpy(parm_data->list[0].name, ea_name, name_len); in CIFSSMBSetEA()
|
/linux-3.4.99/fs/jfs/ ! |
D | acl.c | 33 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 88 ea_name = POSIX_ACL_XATTR_ACCESS; in jfs_set_acl() 91 ea_name = POSIX_ACL_XATTR_DEFAULT; in jfs_set_acl() 107 rc = __jfs_setxattr(tid, inode, ea_name, value, size, 0); in jfs_set_acl()
|
/linux-3.4.99/fs/xfs/ ! |
D | xfs_acl.c | 112 unsigned char *ea_name; in xfs_get_acl() local 123 ea_name = SGI_ACL_FILE; in xfs_get_acl() 126 ea_name = SGI_ACL_DEFAULT; in xfs_get_acl() 141 error = -xfs_attr_get(ip, ea_name, (unsigned char *)xfs_acl, in xfs_get_acl() 171 unsigned char *ea_name; in xfs_set_acl() local 179 ea_name = SGI_ACL_FILE; in xfs_set_acl() 184 ea_name = SGI_ACL_DEFAULT; in xfs_set_acl() 203 error = -xfs_attr_set(ip, ea_name, (unsigned char *)xfs_acl, in xfs_set_acl() 211 error = -xfs_attr_remove(ip, ea_name, ATTR_ROOT); in xfs_set_acl()
|
/linux-3.4.99/fs/ntfs/ ! |
D | layout.h | 2402 u8 ea_name[0]; /* Name of the EA. Note this is ASCII, not member
|