Lines Matching refs:res
794 ssize_t res;797 res = vfs_getxattr(dentry, name, NULL, 0);798 if (res == -ENODATA || res == -EOPNOTSUPP)799 res = 0;801 if (res > 0) {802 buf = kzalloc(res, GFP_KERNEL);806 res = vfs_getxattr(dentry, name, buf, res);807 if (res < 0)812 return res;