diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-08 14:35:19 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-08 14:35:19 -0700 |
commit | 963649d735c8b6eb0f97e82c54f02426ff3f1f45 (patch) | |
tree | ba718c456efbcf7a9564a60db1b8bebb961e7889 /fs/9p/xattr.c | |
parent | 1662867a9b2574bfdb9d4e97186aa131218d7210 (diff) | |
parent | f15844e0777fec936f87a87f97394f83911dacd3 (diff) | |
download | blackbird-op-linux-963649d735c8b6eb0f97e82c54f02426ff3f1f45.tar.gz blackbird-op-linux-963649d735c8b6eb0f97e82c54f02426ff3f1f45.zip |
Merge tag 'for-linus-3.16-merge-window' of git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs
Pull 9p fixes from Eric Van Hensbergen:
"Two bug fixes, one in xattr error path and the other in parsing
major/minor numbers from devices"
* tag 'for-linus-3.16-merge-window' of git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs:
9P: fix return value in v9fs_fid_xattr_set
fs/9p: adjust sscanf parameters accordingly to the variable types
Diffstat (limited to 'fs/9p/xattr.c')
-rw-r--r-- | fs/9p/xattr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/9p/xattr.c b/fs/9p/xattr.c index 04133a1fd9cb..f95e01e058e4 100644 --- a/fs/9p/xattr.c +++ b/fs/9p/xattr.c @@ -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; |