diff options
author | Kirill Tkhai <ktkhai@virtuozzo.com> | 2018-07-19 08:49:39 -0400 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2018-07-26 10:13:12 -0400 |
commit | 109728ccc5933151c68d1106e4065478a487a323 (patch) | |
tree | 64eedb0159922ace16824e6affccec12e97375ca /fs/fuse/file.c | |
parent | a2477b0e67c52f4364a47c3ad70902bc2a61bd4c (diff) |
fuse: Add missed unlock_page() to fuse_readpages_fill()
The above error path returns with page unlocked, so this place seems also
to behave the same.
Fixes: f8dbdf81821b ("fuse: rework fuse_readpages()")
Signed-off-by: Kirill Tkhai <ktkhai@virtuozzo.com>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'fs/fuse/file.c')
-rw-r--r-- | fs/fuse/file.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/fuse/file.c b/fs/fuse/file.c index a201fb0ac64f..aa23749a943b 100644 --- a/fs/fuse/file.c +++ b/fs/fuse/file.c | |||
@@ -866,6 +866,7 @@ static int fuse_readpages_fill(void *_data, struct page *page) | |||
866 | } | 866 | } |
867 | 867 | ||
868 | if (WARN_ON(req->num_pages >= req->max_pages)) { | 868 | if (WARN_ON(req->num_pages >= req->max_pages)) { |
869 | unlock_page(page); | ||
869 | fuse_put_request(fc, req); | 870 | fuse_put_request(fc, req); |
870 | return -EIO; | 871 | return -EIO; |
871 | } | 872 | } |