mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
machine: rename MemoryHotplugState to DeviceMemoryState
Rename it to better match the new terminology. Signed-off-by: David Hildenbrand <david@redhat.com> Message-Id: <20180423165126.15441-9-david@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
18d11dc910
commit
e017da370b
3 changed files with 9 additions and 10 deletions
|
@ -214,15 +214,15 @@ struct MachineClass {
|
|||
};
|
||||
|
||||
/**
|
||||
* MemoryHotplugState:
|
||||
* DeviceMemoryState:
|
||||
* @base: address in guest physical address space where the memory
|
||||
* address space for memory devices starts
|
||||
* @mr: address space container for memory devices
|
||||
*/
|
||||
typedef struct MemoryHotplugState {
|
||||
typedef struct DeviceMemoryState {
|
||||
hwaddr base;
|
||||
MemoryRegion mr;
|
||||
} MemoryHotplugState;
|
||||
} DeviceMemoryState;
|
||||
|
||||
/**
|
||||
* MachineState:
|
||||
|
@ -254,7 +254,7 @@ struct MachineState {
|
|||
bool enforce_config_section;
|
||||
bool enable_graphics;
|
||||
char *memory_encryption;
|
||||
MemoryHotplugState *device_memory;
|
||||
DeviceMemoryState *device_memory;
|
||||
|
||||
ram_addr_t ram_size;
|
||||
ram_addr_t maxram_size;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue