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