diff options
author | Alexey Kardashevskiy <aik@ozlabs.ru> | 2012-08-07 16:10:36 +0000 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2012-08-15 19:43:16 +0200 |
commit | a2950fb6e795e3e10fed35d347a7aa28a44be2ff (patch) | |
tree | 83b78e69fe88b34ffab9e72ec7610b2003e830c9 /hw/spapr_pci.c | |
parent | 9894c5d4b467d24e281c22f2f5e24822c9b55fb3 (diff) | |
download | hqemu-a2950fb6e795e3e10fed35d347a7aa28a44be2ff.zip hqemu-a2950fb6e795e3e10fed35d347a7aa28a44be2ff.tar.gz |
pseries: Add trace event for PCI irqs
This adds a trace event in the pseries PCI specific set_irq() function to
assist in debugging.
Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
[agraf: add trace.h include]
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'hw/spapr_pci.c')
-rw-r--r-- | hw/spapr_pci.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/spapr_pci.c b/hw/spapr_pci.c index 2e38fee..1eb1a7e 100644 --- a/hw/spapr_pci.c +++ b/hw/spapr_pci.c @@ -29,6 +29,7 @@ #include "hw/spapr_pci.h" #include "exec-memory.h" #include <libfdt.h> +#include "trace.h" #include "hw/pci_internals.h" @@ -234,6 +235,7 @@ static void pci_spapr_set_irq(void *opaque, int irq_num, int level) */ sPAPRPHBState *phb = opaque; + trace_spapr_pci_lsi_set(phb->busname, irq_num, phb->lsi_table[irq_num].irq); qemu_set_irq(spapr_phb_lsi_qirq(phb, irq_num), level); } |