Home
last modified time | relevance | path

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

/fs/
Dxattr.c181 vfs_getxattr_alloc(struct dentry *dentry, const char *name, char **xattr_value, in vfs_getxattr_alloc() argument
185 char *value = *xattr_value; in vfs_getxattr_alloc()
200 value = krealloc(*xattr_value, error + 1, flags); in vfs_getxattr_alloc()
207 *xattr_value = value; in vfs_getxattr_alloc()
215 char *xattr_value = NULL; in vfs_xattr_cmp() local
218 rc = vfs_getxattr_alloc(dentry, xattr_name, &xattr_value, 0, flags); in vfs_xattr_cmp()
222 if ((rc != size) || (memcmp(xattr_value, value, rc) != 0)) in vfs_xattr_cmp()
226 kfree(xattr_value); in vfs_xattr_cmp()