Home
last modified time | relevance | path

Searched refs:target_page_bits (Results 1 – 3 of 3) sorted by relevance

/openbmc/qemu/hw/i386/xen/
H A Dxen-hvm.c251 unsigned target_page_bits = qemu_target_page_bits(); in xen_add_to_physmap() local
301 pfn = phys_offset >> target_page_bits; in xen_add_to_physmap()
302 start_gpfn = start_addr >> target_page_bits; in xen_add_to_physmap()
303 nr_pages = size >> target_page_bits; in xen_add_to_physmap()
317 start_addr >> target_page_bits, in xen_add_to_physmap()
318 (start_addr + size - 1) >> target_page_bits, in xen_add_to_physmap()
330 unsigned target_page_bits = qemu_target_page_bits(); in xen_remove_from_physmap() local
348 size >>= target_page_bits; in xen_remove_from_physmap()
349 start_addr >>= target_page_bits; in xen_remove_from_physmap()
350 phys_offset >>= target_page_bits; in xen_remove_from_physmap()
[all …]
/openbmc/qemu/hw/xen/
H A Dxen-hvm-common.c30 unsigned target_page_bits = qemu_target_page_bits(); in xen_ram_alloc() local
49 nr_pfn = size >> target_page_bits; in xen_ram_alloc()
53 pfn_list[i] = (ram_addr >> target_page_bits) + i; in xen_ram_alloc()
/openbmc/qemu/migration/
H A Dsavevm.c227 uint32_t target_page_bits; member
276 state->target_page_bits = qemu_target_page_bits(); in configuration_pre_save()
309 state->target_page_bits = qemu_target_page_bits_min(); in configuration_pre_load()
360 if (state->target_page_bits != qemu_target_page_bits()) { in configuration_post_load()
362 state->target_page_bits, qemu_target_page_bits()); in configuration_post_load()
442 VMSTATE_UINT32(target_page_bits, SaveState),