diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2011-09-15 20:49:49 +0000 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2011-10-06 09:48:09 +0200 |
commit | e6c866d417d1a09536f489e66c21cf49b7ec60b6 (patch) | |
tree | 70fc7c03c5616c7446f6a866ce31e87a7520fb34 /hw/spapr_vio.h | |
parent | 44427c401f7c0053db31f40a58a427e1ae3cd8c3 (diff) | |
download | qemu-e6c866d417d1a09536f489e66c21cf49b7ec60b6.tar.gz qemu-e6c866d417d1a09536f489e66c21cf49b7ec60b6.tar.bz2 qemu-e6c866d417d1a09536f489e66c21cf49b7ec60b6.zip |
pseries: Refactor spapr irq allocation
Paulo Bonzini changed the original spapr code, which manually assigned irq
numbers for each virtual device, to allocate them automatically from the
device initialization. That allowed spapr virtual devices to be constructed
with -device, which is a good start. However, the way that patch worked
doesn't extend nicely for the future when we want to support devices other
than sPAPR VIO devices (e.g. virtio and PCI).
This patch rearranges the irq allocation to be global across the sPAPR
environment, so it can be used by other bus types as well.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'hw/spapr_vio.h')
-rw-r--r-- | hw/spapr_vio.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/spapr_vio.h b/hw/spapr_vio.h index 7eb5367653..4fe5f742c2 100644 --- a/hw/spapr_vio.h +++ b/hw/spapr_vio.h @@ -67,7 +67,6 @@ typedef struct VIOsPAPRDevice { typedef struct VIOsPAPRBus { BusState bus; - int irq; } VIOsPAPRBus; typedef struct { |