[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v10 6/8] bcm2835_property: disable reentrancy detection for iomem
From: |
Alexander Bulekov |
Subject: |
[PATCH v10 6/8] bcm2835_property: disable reentrancy detection for iomem |
Date: |
Thu, 27 Apr 2023 17:10:11 -0400 |
As the code is designed for re-entrant calls from bcm2835_property to
bcm2835_mbox and back into bcm2835_property, mark iomem as
reentrancy-safe.
Signed-off-by: Alexander Bulekov <alxndr@bu.edu>
Reviewed-by: Thomas Huth <thuth@redhat.com>
---
hw/misc/bcm2835_property.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/hw/misc/bcm2835_property.c b/hw/misc/bcm2835_property.c
index 890ae7bae5..de056ea2df 100644
--- a/hw/misc/bcm2835_property.c
+++ b/hw/misc/bcm2835_property.c
@@ -382,6 +382,13 @@ static void bcm2835_property_init(Object *obj)
memory_region_init_io(&s->iomem, OBJECT(s), &bcm2835_property_ops, s,
TYPE_BCM2835_PROPERTY, 0x10);
+
+ /*
+ * bcm2835_property_ops call into bcm2835_mbox, which in-turn reads from
+ * iomem. As such, mark iomem as re-entracy safe.
+ */
+ s->iomem.disable_reentrancy_guard = true;
+
sysbus_init_mmio(SYS_BUS_DEVICE(s), &s->iomem);
sysbus_init_irq(SYS_BUS_DEVICE(s), &s->mbox_irq);
}
--
2.39.0
[PATCH v10 6/8] bcm2835_property: disable reentrancy detection for iomem,
Alexander Bulekov <=
[PATCH v10 2/8] async: Add an optional reentrancy guard to the BH API, Alexander Bulekov, 2023/04/27
[PATCH v10 7/8] raven: disable reentrancy detection for iomem, Alexander Bulekov, 2023/04/27
[PATCH v10 8/8] apic: disable reentrancy detection for apic-msi, Alexander Bulekov, 2023/04/27
[PATCH v10 4/8] hw: replace most qemu_bh_new calls with qemu_bh_new_guarded, Alexander Bulekov, 2023/04/27