mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 00:34:20 +08:00
fuse: writepages: fix aggregation
Checking against tmp-page indexes is not very useful, and results in one (or rarely two) page requests. Which is not much of an improvement... Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
This commit is contained in:
parent
2d033eaa00
commit
1e112a484e
@ -1633,7 +1633,7 @@ static int fuse_writepages_fill(struct page *page,
|
||||
BUG_ON(!req->num_pages);
|
||||
if (req->num_pages == FUSE_MAX_PAGES_PER_REQ ||
|
||||
(req->num_pages + 1) * PAGE_CACHE_SIZE > fc->max_write ||
|
||||
req->pages[req->num_pages - 1]->index + 1 != page->index) {
|
||||
data->orig_pages[req->num_pages - 1]->index + 1 != page->index) {
|
||||
|
||||
fuse_writepages_send(data);
|
||||
data->req = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user