mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 02:21:52 +09:00
fuse: Add missed unlock_page() to fuse_readpages_fill()
commit109728ccc5upstream. The above error path returns with page unlocked, so this place seems also to behave the same. Fixes:f8dbdf8182("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:
committed by
Greg Kroah-Hartman
parent
ff4a71855d
commit
e8a3f3a036
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user