diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2013-05-21 12:07:21 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2013-06-20 16:32:46 +0200 |
commit | 1db8abb10243abe969a2ba307664ba51b60fcac6 (patch) | |
tree | 2d445b2b22170448c41725770bea06cd819fe8fd /include | |
parent | 9f029603abb1472a33e008f9ea4127cc52566986 (diff) | |
download | qemu-1db8abb10243abe969a2ba307664ba51b60fcac6.zip qemu-1db8abb10243abe969a2ba307664ba51b60fcac6.tar.gz qemu-1db8abb10243abe969a2ba307664ba51b60fcac6.tar.bz2 |
memory: move private types to exec.c
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/exec/memory-internal.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/include/exec/memory-internal.h b/include/exec/memory-internal.h index 799c02a..26689fe 100644 --- a/include/exec/memory-internal.h +++ b/include/exec/memory-internal.h @@ -22,24 +22,9 @@ #ifndef CONFIG_USER_ONLY #include "hw/xen/xen.h" -typedef struct PhysPageEntry PhysPageEntry; - -struct PhysPageEntry { - uint16_t is_leaf : 1; - /* index into phys_sections (is_leaf) or phys_map_nodes (!is_leaf) */ - uint16_t ptr : 15; -}; typedef struct AddressSpaceDispatch AddressSpaceDispatch; -struct AddressSpaceDispatch { - /* This is a multi-level map on the physical address space. - * The bottom level has pointers to MemoryRegionSections. - */ - PhysPageEntry phys_map; - MemoryListener listener; -}; - void address_space_init_dispatch(AddressSpace *as); void address_space_destroy_dispatch(AddressSpace *as); |