[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20230602110711.1232370-1-colin.i.king@gmail.com>
Date: Fri, 2 Jun 2023 12:07:11 +0100
From: Colin Ian King <colin.i.king@...il.com>
To: Chris Mason <clm@...com>, Josef Bacik <josef@...icpanda.com>,
David Sterba <dsterba@...e.com>, linux-btrfs@...r.kernel.org
Cc: kernel-janitors@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH][next] btrfs: remove redundant variable pages_processed
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@...il.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
Powered by blists - more mailing lists