[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PATCH 06/25] spapr: Make hash table size a factor of maxram_
From: |
David Gibson |
Subject: |
[Qemu-ppc] [PATCH 06/25] spapr: Make hash table size a factor of maxram_size |
Date: |
Thu, 3 Sep 2015 14:27:57 +1000 |
From: Bharata B Rao <address@hidden>
The hash table size is dependent on ram_size, but since with hotplug
the memory can grow till maxram_size. Hence make hash table size dependent
on maxram_size.
This allows to hotplug huge amounts of memory to the guest.
Signed-off-by: Bharata B Rao <address@hidden>
Reviewed-by: David Gibson <address@hidden>
Signed-off-by: David Gibson <address@hidden>
---
hw/ppc/spapr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
index 42fddb0..88bf8e3 100644
--- a/hw/ppc/spapr.c
+++ b/hw/ppc/spapr.c
@@ -1708,7 +1708,7 @@ static void ppc_spapr_init(MachineState *machine)
* more than needed for the Linux guests we support. */
spapr->htab_shift = 18; /* Minimum architected size */
while (spapr->htab_shift <= 46) {
- if ((1ULL << (spapr->htab_shift + 7)) >= machine->ram_size) {
+ if ((1ULL << (spapr->htab_shift + 7)) >= machine->maxram_size) {
break;
}
spapr->htab_shift++;
--
2.4.3
- [Qemu-ppc] [PATCH 00/25] sPAPR (pseries) patch backlog 2015-00-03, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 01/25] spapr: Provide an error message when migration fails due to htab_shift mismatch, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 11/25] spapr: Make ibm, change-msi respect 3 return values, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 06/25] spapr: Make hash table size a factor of maxram_size,
David Gibson <=
- [Qemu-ppc] [PATCH 10/25] spapr: Add /rtas/ibm,change-msix-capable, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 13/25] spapr_drc: Fix potential undefined behaviour, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 02/25] spapr: Create pseries-2.5 machine, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 12/25] spapr: SPLPAR Characteristics, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 14/25] spapr: add dumpdtb support, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 04/25] spapr: Add LMB DR connectors, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 22/25] spapr_rtas: Prevent QEMU crash during hotplug without a prior device_add, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 03/25] spapr: Initialize hotplug memory address space, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 07/25] spapr: Memory hotplug support, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 08/25] spapr: Don't allow memory hotplug to memory less nodes, David Gibson, 2015/09/03