[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PATCH v4 08/11] machine: rename MemoryHotplugState to Device
From: |
David Hildenbrand |
Subject: |
[Qemu-ppc] [PATCH v4 08/11] machine: rename MemoryHotplugState to DeviceMemoryState |
Date: |
Mon, 23 Apr 2018 18:51:23 +0200 |
Rename it to better match the new terminology.
Signed-off-by: David Hildenbrand <address@hidden>
---
hw/ppc/spapr_hcall.c | 6 +++---
hw/ppc/spapr_rtas_ddw.c | 5 ++---
include/hw/boards.h | 8 ++++----
3 files changed, 9 insertions(+), 10 deletions(-)
diff --git a/hw/ppc/spapr_hcall.c b/hw/ppc/spapr_hcall.c
index e99686389d..3b3d927c98 100644
--- a/hw/ppc/spapr_hcall.c
+++ b/hw/ppc/spapr_hcall.c
@@ -64,13 +64,13 @@ static inline bool valid_ptex(PowerPCCPU *cpu, target_ulong
ptex)
static bool is_ram_address(sPAPRMachineState *spapr, hwaddr addr)
{
MachineState *machine = MACHINE(spapr);
- MemoryHotplugState *hpms = machine->device_memory;
+ DeviceMemoryState *dms = machine->device_memory;
if (addr < machine->ram_size) {
return true;
}
- if ((addr >= hpms->base)
- && ((addr - hpms->base) < memory_region_size(&hpms->mr))) {
+ if ((addr >= dms->base)
+ && ((addr - dms->base) < memory_region_size(&dms->mr))) {
return true;
}
diff --git a/hw/ppc/spapr_rtas_ddw.c b/hw/ppc/spapr_rtas_ddw.c
index d3666c1921..329feb148f 100644
--- a/hw/ppc/spapr_rtas_ddw.c
+++ b/hw/ppc/spapr_rtas_ddw.c
@@ -122,9 +122,8 @@ static void rtas_ibm_query_pe_dma_window(PowerPCCPU *cpu,
if (machine->ram_size == machine->maxram_size) {
max_window_size = machine->ram_size;
} else {
- MemoryHotplugState *hpms = machine->device_memory;
-
- max_window_size = hpms->base + memory_region_size(&hpms->mr);
+ max_window_size = machine->device_memory->base +
+ memory_region_size(&machine->device_memory->mr);
}
avail = SPAPR_PCI_DMA_MAX_WINDOWS - spapr_phb_get_active_win_num(sphb);
diff --git a/include/hw/boards.h b/include/hw/boards.h
index ffc1ee782f..8748964e6f 100644
--- a/include/hw/boards.h
+++ b/include/hw/boards.h
@@ -215,15 +215,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:
@@ -255,7 +255,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;
--
2.14.3
- [Qemu-ppc] [PATCH v4 00/11] pc-dimm: factor out MemoryDevice, David Hildenbrand, 2018/04/23
- [Qemu-ppc] [PATCH v4 03/11] pc-dimm: no need to pass the memory region, David Hildenbrand, 2018/04/23
- [Qemu-ppc] [PATCH v4 04/11] pc-dimm: pass in the machine and to the MemoryHotplugState, David Hildenbrand, 2018/04/23
- [Qemu-ppc] [PATCH v4 02/11] machine: make MemoryHotplugState accessible via the machine, David Hildenbrand, 2018/04/23
- [Qemu-ppc] [PATCH v4 01/11] pc-dimm: factor out MemoryDevice interface, David Hildenbrand, 2018/04/23
- [Qemu-ppc] [PATCH v4 05/11] pc-dimm: factor out address search into MemoryDevice code, David Hildenbrand, 2018/04/23
- [Qemu-ppc] [PATCH v4 06/11] pc-dimm: factor out capacity and slot checks into MemoryDevice, David Hildenbrand, 2018/04/23
- [Qemu-ppc] [PATCH v4 07/11] pc-dimm: move actual plug/unplug of a memory region to MemoryDevice, David Hildenbrand, 2018/04/23
- [Qemu-ppc] [PATCH v4 08/11] machine: rename MemoryHotplugState to DeviceMemoryState,
David Hildenbrand <=
- [Qemu-ppc] [PATCH v4 09/11] pc: rename "hotplug memory" terminology to "device memory", David Hildenbrand, 2018/04/23
- [Qemu-ppc] [PATCH v4 10/11] spapr: rename "hotplug memory" terminology to "device memory", David Hildenbrand, 2018/04/23
- [Qemu-ppc] [PATCH v4 11/11] vl: allow 'maxmem' without 'slot', David Hildenbrand, 2018/04/23
- Re: [Qemu-ppc] [PATCH v4 00/11] pc-dimm: factor out MemoryDevice, Michael S. Tsirkin, 2018/04/23