[<prev] [next>] [day] [month] [year] [list]
Message-ID: <153200455673.28926.11139427627005446149.stgit@localhost.localdomain>
Date: Thu, 19 Jul 2018 15:49:39 +0300
From: Kirill Tkhai <ktkhai@...tuozzo.com>
To: miklos@...redi.hu, linux-fsdevel@...r.kernel.org,
linux-kernel@...r.kernel.org, ktkhai@...tuozzo.com
Subject: [PATCH] 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.
Signed-off-by: Kirill Tkhai <ktkhai@...tuozzo.com>
---
fs/fuse/file.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/fs/fuse/file.c b/fs/fuse/file.c
index 67648ccbdd43..fe8d84eb714a 100644
--- a/fs/fuse/file.c
+++ b/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;
}
Powered by blists - more mailing lists