Revert "net/ibmvnic: Fix EOI when running in XIVE mode"
This reverts commit 11d49ce9f7
(“net/ibmvnic: Fix EOI when running in XIVE mode.”) since that
has the unintended effect of changing the interrupt priority
and emits warning when running in legacy XICS mode.
Signed-off-by: Juliet Kim <julietk@linux.vnet.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
a20ee510a9
commit
284f87d2f3
1 changed files with 5 additions and 3 deletions
|
@ -2878,10 +2878,12 @@ static int enable_scrq_irq(struct ibmvnic_adapter *adapter,
|
||||||
|
|
||||||
if (test_bit(0, &adapter->resetting) &&
|
if (test_bit(0, &adapter->resetting) &&
|
||||||
adapter->reset_reason == VNIC_RESET_MOBILITY) {
|
adapter->reset_reason == VNIC_RESET_MOBILITY) {
|
||||||
struct irq_desc *desc = irq_to_desc(scrq->irq);
|
u64 val = (0xff000000) | scrq->hw_irq;
|
||||||
struct irq_chip *chip = irq_desc_get_chip(desc);
|
|
||||||
|
|
||||||
chip->irq_eoi(&desc->irq_data);
|
rc = plpar_hcall_norets(H_EOI, val);
|
||||||
|
if (rc)
|
||||||
|
dev_err(dev, "H_EOI FAILED irq 0x%llx. rc=%ld\n",
|
||||||
|
val, rc);
|
||||||
}
|
}
|
||||||
|
|
||||||
rc = plpar_hcall_norets(H_VIOCTL, adapter->vdev->unit_address,
|
rc = plpar_hcall_norets(H_VIOCTL, adapter->vdev->unit_address,
|
||||||
|
|
Loading…
Add table
Reference in a new issue