mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 18:09:56 +00:00
net: txgbe: initialize num_q_vectors for MSI/INTx interrupts
When using MSI/INTx interrupts, wx->num_q_vectors is uninitialized.
Thus there will be kernel panic in wx_alloc_q_vectors() to allocate
queue vectors.
Fixes: 3f70318611 ("net: libwx: Add irq flow functions")
Signed-off-by: Jiawen Wu <jiawenwu@trustnetic.com>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
This commit is contained in:
@@ -1686,6 +1686,7 @@ static int wx_set_interrupt_capability(struct wx *wx)
|
|||||||
}
|
}
|
||||||
|
|
||||||
pdev->irq = pci_irq_vector(pdev, 0);
|
pdev->irq = pci_irq_vector(pdev, 0);
|
||||||
|
wx->num_q_vectors = 1;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user