diff options
author | Kirill Tkhai <ktkhai@virtuozzo.com> | 2018-07-19 15:49:39 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-09-05 09:20:08 +0200 |
commit | 01f0772ad0063fbf34ec04fbac2070937cc3ce06 (patch) | |
tree | 700819a12ea306efe66dcbc4403302e440231119 /fs | |
parent | 263508c10106a97aba5f3e655bf145f3a671218a (diff) | |
download | linux-stable-01f0772ad0063fbf34ec04fbac2070937cc3ce06.tar.gz linux-stable-01f0772ad0063fbf34ec04fbac2070937cc3ce06.tar.bz2 linux-stable-01f0772ad0063fbf34ec04fbac2070937cc3ce06.zip |
fuse: Add missed unlock_page() to fuse_readpages_fill()
commit 109728ccc5933151c68d1106e4065478a487a323 upstream.
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>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs')
-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 996aa23c409e..4408abf6675b 100644 --- a/fs/fuse/file.c +++ b/fs/fuse/file.c @@ -868,6 +868,7 @@ static int fuse_readpages_fill(void *_data, struct page *page) } if (WARN_ON(req->num_pages >= req->max_pages)) { + unlock_page(page); fuse_put_request(fc, req); return -EIO; } |