mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 17:41:44 +00:00
scsi: qedi: Allocate IRQs based on msix_cnt
The driver load on some systems failed with error, [0004:01:00.5]:[qedi_request_msix_irq:2524]:8: request_irq failed. Allocate the IRQs based on MSIX count obtained from qed module instead of number of queues. Signed-off-by: Nilesh Javali <nilesh.javali@cavium.com> Reviewed-by: Lee Duncan <lduncan@suse.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
fa97c51109
commit
1a291bce5e
@ -1298,7 +1298,7 @@ static int qedi_request_msix_irq(struct qedi_ctx *qedi)
|
||||
int i, rc, cpu;
|
||||
|
||||
cpu = cpumask_first(cpu_online_mask);
|
||||
for (i = 0; i < MIN_NUM_CPUS_MSIX(qedi); i++) {
|
||||
for (i = 0; i < qedi->int_info.msix_cnt; i++) {
|
||||
rc = request_irq(qedi->int_info.msix[i].vector,
|
||||
qedi_msix_handler, 0, "qedi",
|
||||
&qedi->fp_array[i]);
|
||||
|
Loading…
Reference in New Issue
Block a user