qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 1.0] malta: Fix regression (i8259 interrupts did not


From: Stefan Weil
Subject: [Qemu-devel] [PATCH 1.0] malta: Fix regression (i8259 interrupts did not work)
Date: Thu, 24 Nov 2011 23:07:33 +0100

Commit 5632ae46d5bda798e971dae48ebb318ac2c3686a passes the address
of i8259 to qemu_irq_proxy. i8259 was an auto variable with undefined
value outside of mips_malta_init. This made the proxy unusable.

Ethernet for example no longer worked with MIPS Malta.

There is only one Malta device with one i8259, so using a static
variable for i8259 is the simplest solution which fixes the problem.

Signed-off-by: Stefan Weil <address@hidden>
---
 hw/mips_malta.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/hw/mips_malta.c b/hw/mips_malta.c
index bb49749..e4dc7fb 100644
--- a/hw/mips_malta.c
+++ b/hw/mips_malta.c
@@ -775,7 +775,10 @@ void mips_malta_init (ram_addr_t ram_size,
     int64_t kernel_entry;
     PCIBus *pci_bus;
     CPUState *env;
-    qemu_irq *i8259 = NULL, *isa_irq;
+    /* The address of i8259 is passed to qemu_irq_proxy and saved there, but
+       its value is set later, so it must have a fixed reserved address. */
+    static qemu_irq *i8259;
+    qemu_irq *isa_irq;
     qemu_irq *cpu_exit_irq;
     int piix4_devfn;
     i2c_bus *smbus;
-- 
1.7.2.5




reply via email to

[Prev in Thread] Current Thread [Next in Thread]