[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PULL 01/21] spapr: Allocate HTAB from machine init
From: |
David Gibson |
Subject: |
[Qemu-ppc] [PULL 01/21] spapr: Allocate HTAB from machine init |
Date: |
Fri, 23 Oct 2015 20:43:13 +1100 |
From: Bharata B Rao <address@hidden>
Allocate HTAB from ppc_spapr_init() so that we can abort the guest
if requested HTAB size is't allocated by the host. However retain the
htab reset call in spapr_reset_htab() so that HTAB gets reset (and
not allocated) during machine reset.
Signed-off-by: Bharata B Rao <address@hidden>
Signed-off-by: David Gibson <address@hidden>
---
hw/ppc/spapr.c | 34 +++++++++++++++++++++++++++-------
1 file changed, 27 insertions(+), 7 deletions(-)
diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
index 3852ad1..998a77b 100644
--- a/hw/ppc/spapr.c
+++ b/hw/ppc/spapr.c
@@ -979,7 +979,7 @@ static void emulate_spapr_hypercall(PowerPCCPU *cpu)
#define CLEAN_HPTE(_hpte) ((*(uint64_t *)(_hpte)) &=
tswap64(~HPTE64_V_HPTE_DIRTY))
#define DIRTY_HPTE(_hpte) ((*(uint64_t *)(_hpte)) |=
tswap64(HPTE64_V_HPTE_DIRTY))
-static void spapr_reset_htab(sPAPRMachineState *spapr)
+static void spapr_alloc_htab(sPAPRMachineState *spapr)
{
long shift;
int index;
@@ -994,18 +994,37 @@ static void spapr_reset_htab(sPAPRMachineState *spapr)
/* Kernel handles htab, we don't need to allocate one */
spapr->htab_shift = shift;
kvmppc_kern_htab = true;
+ } else {
+ /* Allocate htab */
+ spapr->htab = qemu_memalign(HTAB_SIZE(spapr), HTAB_SIZE(spapr));
+
+ /* And clear it */
+ memset(spapr->htab, 0, HTAB_SIZE(spapr));
+
+ for (index = 0; index < HTAB_SIZE(spapr) / HASH_PTE_SIZE_64; index++) {
+ DIRTY_HPTE(HPTE(spapr->htab, index));
+ }
+ }
+}
+
+/*
+ * Clear HTAB entries during reset.
+ *
+ * If host kernel has allocated HTAB, KVM_PPC_ALLOCATE_HTAB ioctl is
+ * used to clear HTAB. Otherwise QEMU-allocated HTAB is cleared manually.
+ */
+static void spapr_reset_htab(sPAPRMachineState *spapr)
+{
+ long shift;
+ int index;
+ shift = kvmppc_reset_htab(spapr->htab_shift);
+ if (shift > 0) {
/* Tell readers to update their file descriptor */
if (spapr->htab_fd >= 0) {
spapr->htab_fd_stale = true;
}
} else {
- if (!spapr->htab) {
- /* Allocate an htab if we don't yet have one */
- spapr->htab = qemu_memalign(HTAB_SIZE(spapr), HTAB_SIZE(spapr));
- }
-
- /* And clear it */
memset(spapr->htab, 0, HTAB_SIZE(spapr));
for (index = 0; index < HTAB_SIZE(spapr) / HASH_PTE_SIZE_64; index++) {
@@ -1710,6 +1729,7 @@ static void ppc_spapr_init(MachineState *machine)
}
spapr->htab_shift++;
}
+ spapr_alloc_htab(spapr);
/* Set up Interrupt Controller before we create the VCPUs */
spapr->icp = xics_system_init(machine,
--
2.4.3
- [Qemu-ppc] [PULL 12/21] cmd646: add to storage category, (continued)
- [Qemu-ppc] [PULL 12/21] cmd646: add to storage category, David Gibson, 2015/10/23
- [Qemu-ppc] [PULL 08/21] hw/scsi/spapr_vscsi: Remove superfluous memset, David Gibson, 2015/10/23
- [Qemu-ppc] [PULL 04/21] spapr_pci: Allow PCI host bridge DMA window to be configured, David Gibson, 2015/10/23
- [Qemu-ppc] [PULL 11/21] adb: add to input category, David Gibson, 2015/10/23
- [Qemu-ppc] [PULL 14/21] grackle: add to bridge category, David Gibson, 2015/10/23
- [Qemu-ppc] [PULL 06/21] spapr_iommu: Provide a function to switch a TCE table to allowing VFIO, David Gibson, 2015/10/23
- [Qemu-ppc] [PULL 20/21] openpic: add to misc category, David Gibson, 2015/10/23
- [Qemu-ppc] [PULL 19/21] macio-nvram: add to misc category, David Gibson, 2015/10/23
- [Qemu-ppc] [PULL 16/21] macio-ide: add to storage category, David Gibson, 2015/10/23
- [Qemu-ppc] [PULL 09/21] ppc: Add mmu_model defines for arch 2.03 and 2.07, David Gibson, 2015/10/23
- [Qemu-ppc] [PULL 01/21] spapr: Allocate HTAB from machine init,
David Gibson <=
- [Qemu-ppc] [PULL 15/21] cuda: add to bridge category, David Gibson, 2015/10/23
- [Qemu-ppc] [PULL 05/21] spapr_iommu: Rename vfio_accel parameter, David Gibson, 2015/10/23
- Re: [Qemu-ppc] [PULL 00/21] ppc-next-20151023 queue 20151023, Michael Roth, 2015/10/23