Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c08b3f9a authored by Wei Yongjun's avatar Wei Yongjun Committed by Martin K. Petersen
Browse files

scsi: fusion: Fix error return code in mptfc_probe()



Fix to return error code -ENOMEM from the workqueue alloc error handling
case instead of 0, as done elsewhere in this function.

Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 45e596cd
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1326,8 +1326,10 @@ mptfc_probe(struct pci_dev *pdev, const struct pci_device_id *id)
	ioc->fc_rescan_work_q =
		alloc_ordered_workqueue(ioc->fc_rescan_work_q_name,
					WQ_MEM_RECLAIM);
	if (!ioc->fc_rescan_work_q)
	if (!ioc->fc_rescan_work_q) {
		error = -ENOMEM;
		goto out_mptfc_probe;
	}

	/*
	 *  Pre-fetch FC port WWN and stuff...