From: Peter Georg <peter.georg@xxxxxxxxxxxxxxxxxxxxxxxx> qla2xxx: Add new messaging Bugzilla: https://bugzilla.redhat.com/2039070 Upstream Status: RHEL only commit 3e0ddf59e494012fa5bc015328c6425143eb103f Author: Ewan D. Milne <emilne@xxxxxxxxxx> Date: Tue Jan 11 12:32:58 2022 -0500 qla2xxx: Add new messaging Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2039070 Upstream Status: RHEL-only New messages based on input from BU and RH Engineering. Signed-off-by: Ewan D. Milne <emilne@xxxxxxxxxx> Signed-off-by: Peter Georg <peter.georg@xxxxxxxxxxxxxxxxxxxxxxxx> diff --git a/drivers/scsi/qla2xxx/qla_os.c b/drivers/scsi/qla2xxx/qla_os.c index blahblah..blahblah 100644 --- a/drivers/scsi/qla2xxx/qla_os.c +++ b/drivers/scsi/qla2xxx/qla_os.c @@ -2805,6 +2805,23 @@ static void qla2x00_iocb_work_fn(struct work_struct *work) spin_unlock_irqrestore(&vha->work_lock, flags); } +#ifdef CONFIG_RHEL_DIFFERENCES +static const struct pci_device_id rh_deprecated_pci_table[] = { + { 0 } +}; + +static const struct pci_device_id rh_unmaintained_pci_table[] = { + { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2532) }, + { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2031) }, + { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8031) }, + { 0 } +}; + +static const struct pci_device_id rh_disabled_pci_table[] = { + { 0 } +}; +#endif + /* * PCI driver interface */ @@ -2824,6 +2841,14 @@ qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) struct rsp_que *rsp = NULL; int i; +#ifdef CONFIG_RHEL_DIFFERENCES + if (pci_hw_disabled(rh_disabled_pci_table, pdev)) + return -ENODEV; + + pci_hw_deprecated(rh_deprecated_pci_table, pdev); + pci_hw_unmaintained(rh_unmaintained_pci_table, pdev); +#endif + bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO); sht = &qla2xxx_driver_template; if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 || -- https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1610 _______________________________________________ kernel mailing list -- kernel@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to kernel-leave@xxxxxxxxxxxxxxxxxxxxxxx Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/kernel@xxxxxxxxxxxxxxxxxxxxxxx Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure