Parcourir la source

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>
Kirill Tkhai il y a 7 ans
Parent
commit
109728ccc5
1 fichiers modifiés avec 1 ajouts et 0 suppressions
  1. 1 0
      fs/fuse/file.c

+ 1 - 0
fs/fuse/file.c

@@ -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;
 	}