Lines Matching defs:sectorsize
10 * Subpage (sectorsize < PAGE_SIZE) support overview:
69 if (fs_info->sectorsize >= PAGE_SIZE)
75 * As we have ruled our sectorsize >= PAGE_SIZE case already.
90 void btrfs_init_subpage_info(struct btrfs_subpage_info *subpage_info, u32 sectorsize)
95 ASSERT(IS_ALIGNED(PAGE_SIZE, sectorsize));
97 nr_bits = PAGE_SIZE / sectorsize;
162 ASSERT(fs_info->sectorsize < PAGE_SIZE);
230 ASSERT(IS_ALIGNED(start, fs_info->sectorsize) &&
231 IS_ALIGNED(len, fs_info->sectorsize));
584 * in. We only test sectorsize == PAGE_SIZE cases so far, thus we can fall
585 * back to regular sectorsize branch.