[PATCH 06/11] writeback: Use the folio_batch queue iterator

From: Christoph Hellwig
Date: Thu Dec 14 2023 - 08:26:28 EST


From: "Matthew Wilcox (Oracle)" <willy@xxxxxxxxxxxxx>

Instead of keeping our own local iterator variable, use the one just
added to folio_batch.

Signed-off-by: Matthew Wilcox (Oracle) <willy@xxxxxxxxxxxxx>
Signed-off-by: Christoph Hellwig <hch@xxxxxx>
---
mm/page-writeback.c | 18 ++++++++----------
1 file changed, 8 insertions(+), 10 deletions(-)

diff --git a/mm/page-writeback.c b/mm/page-writeback.c
index 2087d16115710e..2243a0d1b2d3c7 100644
--- a/mm/page-writeback.c
+++ b/mm/page-writeback.c
@@ -2378,11 +2378,15 @@ static int writeback_finish(struct address_space *mapping,
return wbc->err;
}

-static void writeback_get_batch(struct address_space *mapping,
+static struct folio *writeback_get_next(struct address_space *mapping,
struct writeback_control *wbc)
{
+ struct folio *folio = folio_batch_next(&wbc->fbatch);
xa_mark_t tag;

+ if (folio)
+ return folio;
+
if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
tag = PAGECACHE_TAG_TOWRITE;
else
@@ -2392,6 +2396,7 @@ static void writeback_get_batch(struct address_space *mapping,
cond_resched();
filemap_get_folios_tag(mapping, &wbc->index, wbc->end, tag,
&wbc->fbatch);
+ return folio_batch_next(&wbc->fbatch);
}

static bool should_writeback_folio(struct address_space *mapping,
@@ -2460,7 +2465,6 @@ int write_cache_pages(struct address_space *mapping,
void *data)
{
int error;
- int i = 0;

if (wbc->range_cyclic) {
wbc->index = mapping->writeback_index; /* prev offset */
@@ -2479,18 +2483,12 @@ int write_cache_pages(struct address_space *mapping,
wbc->err = 0;

for (;;) {
- struct folio *folio;
+ struct folio *folio = writeback_get_next(mapping, wbc);
unsigned long nr;

- if (i == wbc->fbatch.nr) {
- writeback_get_batch(mapping, wbc);
- i = 0;
- }
- if (wbc->fbatch.nr == 0)
+ if (!folio)
break;

- folio = wbc->fbatch.folios[i++];
-
wbc->done_index = folio->index;

folio_lock(folio);
--
2.39.2