mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
btrfs: raid56: avoid double for loop inside alloc_rbio_essential_pages()
The double loop is just checking if the page for the vertical stripe is allocated. We can easily convert it to single loop and get rid of @stripe variable. Signed-off-by: Qu Wenruo <wqu@suse.com> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
ef340fccbe
commit
aee35e4bcc
@ -2380,23 +2380,22 @@ void raid56_add_scrub_pages(struct btrfs_raid_bio *rbio, struct page *page,
|
||||
static int alloc_rbio_essential_pages(struct btrfs_raid_bio *rbio)
|
||||
{
|
||||
const u32 sectorsize = rbio->bioc->fs_info->sectorsize;
|
||||
int stripe;
|
||||
int sectornr;
|
||||
int total_sector_nr;
|
||||
|
||||
for_each_set_bit(sectornr, &rbio->dbitmap, rbio->stripe_nsectors) {
|
||||
for (stripe = 0; stripe < rbio->real_stripes; stripe++) {
|
||||
struct page *page;
|
||||
int index = (stripe * rbio->stripe_nsectors + sectornr) *
|
||||
sectorsize >> PAGE_SHIFT;
|
||||
for (total_sector_nr = 0; total_sector_nr < rbio->nr_sectors;
|
||||
total_sector_nr++) {
|
||||
struct page *page;
|
||||
int sectornr = total_sector_nr % rbio->stripe_nsectors;
|
||||
int index = (total_sector_nr * sectorsize) >> PAGE_SHIFT;
|
||||
|
||||
if (rbio->stripe_pages[index])
|
||||
continue;
|
||||
|
||||
page = alloc_page(GFP_NOFS);
|
||||
if (!page)
|
||||
return -ENOMEM;
|
||||
rbio->stripe_pages[index] = page;
|
||||
}
|
||||
if (!test_bit(sectornr, &rbio->dbitmap))
|
||||
continue;
|
||||
if (rbio->stripe_pages[index])
|
||||
continue;
|
||||
page = alloc_page(GFP_NOFS);
|
||||
if (!page)
|
||||
return -ENOMEM;
|
||||
rbio->stripe_pages[index] = page;
|
||||
}
|
||||
index_stripe_sectors(rbio);
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user