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>
This commit is contained in:
parent
c00f07a1f6
commit
15b584de9a
@ -866,6 +866,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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user