Linux Btrfs filesystem development
 help / color / mirror / Atom feed
* [PATCH][next] btrfs: remove redundant variable pages_processed
@ 2023-06-02 11:07 Colin Ian King
  0 siblings, 0 replies; only message in thread
From: Colin Ian King @ 2023-06-02 11:07 UTC (permalink / raw)
  To: Chris Mason, Josef Bacik, David Sterba, linux-btrfs
  Cc: kernel-janitors, linux-kernel

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 --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();
-- 
2.30.2


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2023-06-02 11:08 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-02 11:07 [PATCH][next] btrfs: remove redundant variable pages_processed Colin Ian King

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox