summaryrefslogtreecommitdiffstats
path: root/include/hw/pci-host
diff options
context:
space:
mode:
authorDaniel Henrique Barboza2022-01-18 12:56:31 +0100
committerCédric Le Goater2022-01-18 12:56:31 +0100
commit7e67e0a9f00072f31c5279f711441ddfa96ee0e2 (patch)
treec602efd02180614653124ac31e84d60172a47fa1 /include/hw/pci-host
parentppc/pnv: reduce stack->stack_no usage (diff)
downloadqemu-7e67e0a9f00072f31c5279f711441ddfa96ee0e2.tar.gz
qemu-7e67e0a9f00072f31c5279f711441ddfa96ee0e2.tar.xz
qemu-7e67e0a9f00072f31c5279f711441ddfa96ee0e2.zip
ppc/pnv: remove stack pointer from PnvPHB4
This pointer was being used for two reasons: pnv_phb4_update_regions() was using it to access the PHB and phb4_realize() was using it as a way to determine if the PHB was user created. We can determine if the PHB is user created via phb->pec, introduced in the previous patch, and pnv_phb4_update_regions() is no longer using stack->phb. Remove the pointer from the PnvPHB4 device. Reviewed-by: Cédric Le Goater <clg@kaod.org> Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com> Message-Id: <20220114180719.52117-4-danielhb413@gmail.com> Signed-off-by: Cédric Le Goater <clg@kaod.org>
Diffstat (limited to 'include/hw/pci-host')
-rw-r--r--include/hw/pci-host/pnv_phb4.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/hw/pci-host/pnv_phb4.h b/include/hw/pci-host/pnv_phb4.h
index 1d27e4c0cb..a9059b7279 100644
--- a/include/hw/pci-host/pnv_phb4.h
+++ b/include/hw/pci-host/pnv_phb4.h
@@ -151,8 +151,6 @@ struct PnvPHB4 {
XiveSource xsrc;
qemu_irq *qirqs;
- PnvPhb4PecStack *stack;
-
QLIST_HEAD(, PnvPhb4DMASpace) dma_spaces;
};