Symbol: VDO_BLOCK_MAP_ENTRIES_PER_PAGE
drivers/md/dm-vdo/block-map.c
2254
data_vio->logical.lbn % VDO_BLOCK_MAP_ENTRIES_PER_PAGE;
drivers/md/dm-vdo/block-map.c
2257
.page_index = page_index / VDO_BLOCK_MAP_ENTRIES_PER_PAGE,
drivers/md/dm-vdo/block-map.c
2260
.slot = page_index % VDO_BLOCK_MAP_ENTRIES_PER_PAGE,
drivers/md/dm-vdo/block-map.c
2277
tree_slot.page_index % VDO_BLOCK_MAP_ENTRIES_PER_PAGE;
drivers/md/dm-vdo/block-map.c
2278
tree_slot.page_index = tree_slot.page_index / VDO_BLOCK_MAP_ENTRIES_PER_PAGE;
drivers/md/dm-vdo/block-map.c
2322
slot_number_t slot = page_index % VDO_BLOCK_MAP_ENTRIES_PER_PAGE;
drivers/md/dm-vdo/block-map.c
2324
page_index /= VDO_BLOCK_MAP_ENTRIES_PER_PAGE;
drivers/md/dm-vdo/block-map.c
2592
for (; level->slot < VDO_BLOCK_MAP_ENTRIES_PER_PAGE; level->slot++) {
drivers/md/dm-vdo/block-map.c
2595
(VDO_BLOCK_MAP_ENTRIES_PER_PAGE * level->page_index) + level->slot;
drivers/md/dm-vdo/block-map.c
2688
level_pages = DIV_ROUND_UP(level_pages, VDO_BLOCK_MAP_ENTRIES_PER_PAGE);
drivers/md/dm-vdo/block-map.c
2896
BUILD_BUG_ON(VDO_BLOCK_MAP_ENTRIES_PER_PAGE !=
drivers/md/dm-vdo/block-map.c
2981
page_number_t page_number = data_vio->logical.lbn / VDO_BLOCK_MAP_ENTRIES_PER_PAGE;
drivers/md/dm-vdo/encodings.c
456
level_size = DIV_ROUND_UP(level_size, VDO_BLOCK_MAP_ENTRIES_PER_PAGE);
drivers/md/dm-vdo/encodings.h
864
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) ||