Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 109728cc authored by Kirill Tkhai's avatar Kirill Tkhai Committed by Miklos Szeredi
Browse files

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: f8dbdf81 ("fuse: rework fuse_readpages()")
Signed-off-by: default avatarKirill Tkhai <ktkhai@virtuozzo.com>
Signed-off-by: default avatarMiklos Szeredi <mszeredi@redhat.com>
parent a2477b0e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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;
	}