Searched refs:vfs_listxattr (Results 1 - 6 of 6) sorted by relevance

/linux-master/include/linux/
H A Dxattr.h77 ssize_t vfs_listxattr(struct dentry *d, char *list, size_t size);
/linux-master/fs/overlayfs/
H A Dxattrs.c123 res = vfs_listxattr(realdentry, list, size);
H A Dcopy_up.c87 list_size = vfs_listxattr(old, NULL, 0);
98 list_size = vfs_listxattr(old, buf, list_size);
/linux-master/fs/
H A Dxattr.c461 * vfs_listxattr - retrieve \0 separated list of xattr names
469 * Note, for legacy reasons the vfs_listxattr() function lists POSIX
471 * vfs_listxattr() function doesn't check for this flag since a
483 vfs_listxattr(struct dentry *dentry, char *list, size_t size) function
501 EXPORT_SYMBOL_GPL(vfs_listxattr); variable
840 error = vfs_listxattr(d, klist, size);
1301 * then vfs_listxattr() caps it to XATTR_LIST_MAX and if more xattr names
/linux-master/fs/smb/server/
H A Dvfs.c864 size = vfs_listxattr(dentry, NULL, 0);
873 size = vfs_listxattr(dentry, vlist, size);
/linux-master/fs/nfsd/
H A Dvfs.c2271 * Additionally, vfs_listxattr can return -ERANGE. This means that the
2397 len = vfs_listxattr(dentry, NULL, 0);
2414 len = vfs_listxattr(dentry, buf, len);

Completed in 173 milliseconds