Commit f15844e0 authored by Dominique Martinet's avatar Dominique Martinet Committed by Eric Van Hensbergen

9P: fix return value in v9fs_fid_xattr_set

v9fs_fid_xattr_set is supposed to return 0 on success.

This corrects the behaviour introduced in commit
bdd5c28d
"9p: fix return value in case in v9fs_fid_xattr_set()"

(The function returns a negative error on error, as expected)
Signed-off-by: default avatarDominique Martinet <dominique.martinet@cea.fr>
Signed-off-by: default avatarEric Van Hensbergen <ericvh@gmail.com>
parent afe604d0
......@@ -156,7 +156,7 @@ int v9fs_fid_xattr_set(struct p9_fid *fid, const char *name,
offset += write_count;
value_len -= write_count;
}
retval = offset;
retval = 0;
err:
p9_client_clunk(fid);
return retval;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment