diff options
Diffstat (limited to 'fs/f2fs/node.c')
-rw-r--r-- | fs/f2fs/node.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/f2fs/node.c b/fs/f2fs/node.c index d6e4df0bb622..b33dac9592ca 100644 --- a/fs/f2fs/node.c +++ b/fs/f2fs/node.c | |||
@@ -1282,7 +1282,7 @@ static struct page *last_fsync_dnode(struct f2fs_sb_info *sbi, nid_t ino) | |||
1282 | struct page *last_page = NULL; | 1282 | struct page *last_page = NULL; |
1283 | int nr_pages; | 1283 | int nr_pages; |
1284 | 1284 | ||
1285 | pagevec_init(&pvec, 0); | 1285 | pagevec_init(&pvec); |
1286 | index = 0; | 1286 | index = 0; |
1287 | 1287 | ||
1288 | while ((nr_pages = pagevec_lookup_tag(&pvec, NODE_MAPPING(sbi), &index, | 1288 | while ((nr_pages = pagevec_lookup_tag(&pvec, NODE_MAPPING(sbi), &index, |
@@ -1436,7 +1436,7 @@ int fsync_node_pages(struct f2fs_sb_info *sbi, struct inode *inode, | |||
1436 | return PTR_ERR_OR_ZERO(last_page); | 1436 | return PTR_ERR_OR_ZERO(last_page); |
1437 | } | 1437 | } |
1438 | retry: | 1438 | retry: |
1439 | pagevec_init(&pvec, 0); | 1439 | pagevec_init(&pvec); |
1440 | index = 0; | 1440 | index = 0; |
1441 | 1441 | ||
1442 | while ((nr_pages = pagevec_lookup_tag(&pvec, NODE_MAPPING(sbi), &index, | 1442 | while ((nr_pages = pagevec_lookup_tag(&pvec, NODE_MAPPING(sbi), &index, |
@@ -1547,7 +1547,7 @@ int sync_node_pages(struct f2fs_sb_info *sbi, struct writeback_control *wbc, | |||
1547 | int ret = 0; | 1547 | int ret = 0; |
1548 | int nr_pages; | 1548 | int nr_pages; |
1549 | 1549 | ||
1550 | pagevec_init(&pvec, 0); | 1550 | pagevec_init(&pvec); |
1551 | 1551 | ||
1552 | next_step: | 1552 | next_step: |
1553 | index = 0; | 1553 | index = 0; |
@@ -1648,7 +1648,7 @@ int wait_on_node_pages_writeback(struct f2fs_sb_info *sbi, nid_t ino) | |||
1648 | int ret2, ret = 0; | 1648 | int ret2, ret = 0; |
1649 | int nr_pages; | 1649 | int nr_pages; |
1650 | 1650 | ||
1651 | pagevec_init(&pvec, 0); | 1651 | pagevec_init(&pvec); |
1652 | 1652 | ||
1653 | while ((nr_pages = pagevec_lookup_tag(&pvec, NODE_MAPPING(sbi), &index, | 1653 | while ((nr_pages = pagevec_lookup_tag(&pvec, NODE_MAPPING(sbi), &index, |
1654 | PAGECACHE_TAG_WRITEBACK))) { | 1654 | PAGECACHE_TAG_WRITEBACK))) { |