Searched refs:blk_bitmap (Results 1 – 3 of 3) sorted by relevance
/qemu/hw/mem/ |
H A D | cxl_type3.c | 684 region->blk_bitmap = bitmap_new(region->len / region->block_size); in cxl_create_dc_regions() 713 g_free(region->blk_bitmap); in cxl_destroy_dc_regions() 1013 bitmap_set(region->blk_bitmap, (dpa - region->base) / region->block_size, in ct3_set_region_block_backed() 1039 return find_next_zero_bit(region->blk_bitmap, nr + nbits, nr) == nr + nbits; in ct3_test_region_block_backed() 1060 bitmap_clear(region->blk_bitmap, nr, nbits); in ct3_clear_region_block_backed() 1971 g_autofree unsigned long *blk_bitmap = NULL; in qmp_cxl_process_dynamic_capacity_prescriptive() local 1992 blk_bitmap = bitmap_new(dcd->dc.regions[rid].len / block_size); in qmp_cxl_process_dynamic_capacity_prescriptive() 2017 if (test_any_bits_set(blk_bitmap, offset / block_size, in qmp_cxl_process_dynamic_capacity_prescriptive() 2022 bitmap_set(blk_bitmap, offset / block_size, len / block_size); in qmp_cxl_process_dynamic_capacity_prescriptive()
|
/qemu/include/hw/cxl/ |
H A D | cxl_device.h | 532 unsigned long *blk_bitmap; member
|
/qemu/hw/cxl/ |
H A D | cxl-mailbox-utils.c | 2928 g_autofree unsigned long *blk_bitmap = NULL; in cxl_detect_malformed_extent_list() local 2937 blk_bitmap = bitmap_new((lastregion->base + lastregion->len - in cxl_detect_malformed_extent_list() 2954 if (test_any_bits_set(blk_bitmap, dpa / min_block_size, in cxl_detect_malformed_extent_list() 2958 bitmap_set(blk_bitmap, dpa / min_block_size, len / min_block_size); in cxl_detect_malformed_extent_list()
|