VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: Chengguang Xu <cgxu519@gmx.com> 2018-05-16 13:34:52 +0800 committer: Al Viro <viro@zeniv.linux.org.uk> 2018-05-29 13:22:41 -0400 commit: eb915375757cd32c5abf7aea4caa76fe7edf8ef4 parent: 965de0ec351a580874dcc4c1eaeae78dd9d1c369
Commit Summary:
vfs: delete unnecessary assignment in vfs_listxattr
Diffstat:
1 file changed, 0 insertions, 1 deletion
diff --git a/fs/xattr.c b/fs/xattr.c
index 28e1dfc27b95..f9cb1db187b7 100644
--- a/fs/xattr.c
+++ b/fs/xattr.c
@@ -353,7 +353,6 @@ vfs_listxattr(struct dentry *dentry, char *list, size_t size)
 	if (error)
 		return error;
 	if (inode->i_op->listxattr && (inode->i_opflags & IOP_XATTR)) {
-		error = -EOPNOTSUPP;
 		error = inode->i_op->listxattr(dentry, list, size);
 	} else {
 		error = security_inode_listsecurity(inode, list, size);