diff mbox series

[next] btrfs: remove redundant variable pages_processed

Message ID 20230602110711.1232370-1-colin.i.king@gmail.com (mailing list archive)
State New, archived
Headers show
Series [next] btrfs: remove redundant variable pages_processed | expand

Commit Message

Colin Ian King June 2, 2023, 11:07 a.m. UTC
Variable pages_processed is being accumulated but it is not being
used after this. An earlier commit 6d6a31e7fc99 ("btrfs: split page
locking out of __process_pages_contig") removed the check on
pages_processed, so this variable is now redundant and can be removed.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 fs/btrfs/extent_io.c | 2 --
 1 file changed, 2 deletions(-)
diff mbox series

Patch

diff --git a/fs/btrfs/extent_io.c b/fs/btrfs/extent_io.c
index 5ed83ef4cb72..af60476c0ecf 100644
--- a/fs/btrfs/extent_io.c
+++ b/fs/btrfs/extent_io.c
@@ -227,7 +227,6 @@  static void __process_pages_contig(struct address_space *mapping,
 	pgoff_t start_index = start >> PAGE_SHIFT;
 	pgoff_t end_index = end >> PAGE_SHIFT;
 	pgoff_t index = start_index;
-	unsigned long pages_processed = 0;
 	struct folio_batch fbatch;
 	int i;
 
@@ -242,7 +241,6 @@  static void __process_pages_contig(struct address_space *mapping,
 
 			process_one_page(fs_info, &folio->page, locked_page,
 					 page_ops, start, end);
-			pages_processed += folio_nr_pages(folio);
 		}
 		folio_batch_release(&fbatch);
 		cond_resched();