Symbol: VDO_BLOCK_MAP_ENTRIES_PER_PAGE
drivers/md/dm-vdo/block-map.c
2253
data_vio->logical.lbn % VDO_BLOCK_MAP_ENTRIES_PER_PAGE;
drivers/md/dm-vdo/block-map.c
2256
.page_index = page_index / VDO_BLOCK_MAP_ENTRIES_PER_PAGE,
drivers/md/dm-vdo/block-map.c
2259
.slot = page_index % VDO_BLOCK_MAP_ENTRIES_PER_PAGE,
drivers/md/dm-vdo/block-map.c
2276
tree_slot.page_index % VDO_BLOCK_MAP_ENTRIES_PER_PAGE;
drivers/md/dm-vdo/block-map.c
2277
tree_slot.page_index = tree_slot.page_index / VDO_BLOCK_MAP_ENTRIES_PER_PAGE;
drivers/md/dm-vdo/block-map.c
2321
slot_number_t slot = page_index % VDO_BLOCK_MAP_ENTRIES_PER_PAGE;
drivers/md/dm-vdo/block-map.c
2323
page_index /= VDO_BLOCK_MAP_ENTRIES_PER_PAGE;
drivers/md/dm-vdo/block-map.c
2584
for (; level->slot < VDO_BLOCK_MAP_ENTRIES_PER_PAGE; level->slot++) {
drivers/md/dm-vdo/block-map.c
2587
(VDO_BLOCK_MAP_ENTRIES_PER_PAGE * level->page_index) + level->slot;
drivers/md/dm-vdo/block-map.c
2680
level_pages = DIV_ROUND_UP(level_pages, VDO_BLOCK_MAP_ENTRIES_PER_PAGE);
drivers/md/dm-vdo/block-map.c
2885
BUILD_BUG_ON(VDO_BLOCK_MAP_ENTRIES_PER_PAGE !=
drivers/md/dm-vdo/block-map.c
2969
page_number_t page_number = data_vio->logical.lbn / VDO_BLOCK_MAP_ENTRIES_PER_PAGE;
drivers/md/dm-vdo/encodings.c
507
level_size = DIV_ROUND_UP(level_size, VDO_BLOCK_MAP_ENTRIES_PER_PAGE);
drivers/md/dm-vdo/encodings.h
876
return DIV_ROUND_UP(entries, VDO_BLOCK_MAP_ENTRIES_PER_PAGE);
drivers/md/dm-vdo/repair.c
404
for (slot = start; slot < VDO_BLOCK_MAP_ENTRIES_PER_PAGE; slot++) {
drivers/md/dm-vdo/repair.c
488
last_slot = VDO_BLOCK_MAP_ENTRIES_PER_PAGE;
drivers/md/dm-vdo/repair.c
587
.slot = map->entry_count % VDO_BLOCK_MAP_ENTRIES_PER_PAGE,
drivers/md/dm-vdo/repair.c
591
repair->last_slot.slot = VDO_BLOCK_MAP_ENTRIES_PER_PAGE;
drivers/md/dm-vdo/repair.c
755
(entry->slot.slot >= VDO_BLOCK_MAP_ENTRIES_PER_PAGE) ||