diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-05-03 14:23:58 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-05-03 14:23:58 -0700 |
commit | 610603a520bdeb35bd838835f36cfd6b4a563995 (patch) | |
tree | 264ea44f95bfd5282e23d93378831794c6ba015f /fs | |
parent | 1248ded656d8afb64be01b2985b7b3e562eac914 (diff) | |
parent | 4441f63ab7e581ae460c9f7e06fba8a2be192e81 (diff) | |
download | op-kernel-dev-610603a520bdeb35bd838835f36cfd6b4a563995.zip op-kernel-dev-610603a520bdeb35bd838835f36cfd6b4a563995.tar.gz |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse
Pull fuse fixes from Miklos Szeredi:
"Fix a regression and update the MAINTAINERS entry for fuse"
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse:
fuse: update mailing list in MAINTAINERS
fuse: Fix return value from fuse_get_user_pages()
Diffstat (limited to 'fs')
-rw-r--r-- | fs/fuse/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/fuse/file.c b/fs/fuse/file.c index 719924d..dcad5e2 100644 --- a/fs/fuse/file.c +++ b/fs/fuse/file.c @@ -1295,7 +1295,7 @@ static int fuse_get_user_pages(struct fuse_req *req, struct iov_iter *ii, *nbytesp = nbytes; - return ret; + return ret < 0 ? ret : 0; } static inline int fuse_iter_npages(const struct iov_iter *ii_p) |