]> Git Repo - qemu.git/commitdiff
pseries: Fix bug in PCI MSI allocation
authorAlexey Kardashevskiy <[email protected]>
Mon, 12 Nov 2012 16:46:59 +0000 (16:46 +0000)
committerAlexander Graf <[email protected]>
Mon, 26 Nov 2012 18:53:26 +0000 (19:53 +0100)
In one of the recent reworks to the XICS code, a bug was introduced where
we use the wrong sense and allocate level interrupts instead of message
interrupts for PCI MSIs.  This patch fixes it.

Signed-off-by: Alexey Kardashevskiy <[email protected]>
Signed-off-by: David Gibson <[email protected]>
Signed-off-by: Alexander Graf <[email protected]>
hw/spapr_pci.c

index a08ed11166595bdc493065beb64d4ce5b7b0dded..3c5b855bc097d04167668bb41fd4253ef0a31ec1 100644 (file)
@@ -351,7 +351,7 @@ static void rtas_ibm_change_msi(sPAPREnvironment *spapr,
 
     /* There is no cached config, allocate MSIs */
     if (!phb->msi_table[ndev].nvec) {
-        irq = spapr_allocate_irq_block(req_num, true);
+        irq = spapr_allocate_irq_block(req_num, false);
         if (irq < 0) {
             fprintf(stderr, "Cannot allocate MSIs for device#%d", ndev);
             rtas_st(rets, 0, -1); /* Hardware error */
This page took 0.025189 seconds and 4 git commands to generate.