Skip to content

Commit 5e442a4

Browse files
author
Paul Ely
committed
scsi: lpfc: Modify end-of-life adapters' model descriptions
JIRA: https://issues.redhat.com/browse/RHEL-103751 commit e03bc28 Author: Justin Tee <justin.tee@broadcom.com> Date: Wed Jun 18 12:21:36 2025 -0700 scsi: lpfc: Modify end-of-life adapters' model descriptions Obsolete adapters' model description strings are updated to indicate that they are no longer supported. End-of-life adapters will still remain probed by the lpfc driver based on PCI id. Signed-off-by: Justin Tee <justin.tee@broadcom.com> Link: https://lore.kernel.org/r/20250618192138.124116-12-justintee8345@gmail.com Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: Paul Ely <paely@redhat.com>
1 parent ee3715d commit 5e442a4

File tree

1 file changed

+36
-19
lines changed

1 file changed

+36
-19
lines changed

drivers/scsi/lpfc/lpfc_init.c

Lines changed: 36 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2627,27 +2627,33 @@ lpfc_get_hba_model_desc(struct lpfc_hba *phba, uint8_t *mdp, uint8_t *descp)
26272627
"Obsolete, Unsupported Fibre Channel Adapter"};
26282628
break;
26292629
case PCI_DEVICE_ID_BMID:
2630-
m = (typeof(m)){"LP1150", "PCI-X2", "Fibre Channel Adapter"};
2630+
m = (typeof(m)){"LP1150", "PCI-X2",
2631+
"Obsolete, Unsupported Fibre Channel Adapter"};
26312632
break;
26322633
case PCI_DEVICE_ID_BSMB:
26332634
m = (typeof(m)){"LP111", "PCI-X2",
26342635
"Obsolete, Unsupported Fibre Channel Adapter"};
26352636
break;
26362637
case PCI_DEVICE_ID_ZEPHYR:
2637-
m = (typeof(m)){"LPe11000", "PCIe", "Fibre Channel Adapter"};
2638+
m = (typeof(m)){"LPe11000", "PCIe",
2639+
"Obsolete, Unsupported Fibre Channel Adapter"};
26382640
break;
26392641
case PCI_DEVICE_ID_ZEPHYR_SCSP:
2640-
m = (typeof(m)){"LPe11000", "PCIe", "Fibre Channel Adapter"};
2642+
m = (typeof(m)){"LPe11000", "PCIe",
2643+
"Obsolete, Unsupported Fibre Channel Adapter"};
26412644
break;
26422645
case PCI_DEVICE_ID_ZEPHYR_DCSP:
2643-
m = (typeof(m)){"LP2105", "PCIe", "FCoE Adapter"};
2646+
m = (typeof(m)){"LP2105", "PCIe",
2647+
"Obsolete, Unsupported FCoE Adapter"};
26442648
GE = 1;
26452649
break;
26462650
case PCI_DEVICE_ID_ZMID:
2647-
m = (typeof(m)){"LPe1150", "PCIe", "Fibre Channel Adapter"};
2651+
m = (typeof(m)){"LPe1150", "PCIe",
2652+
"Obsolete, Unsupported Fibre Channel Adapter"};
26482653
break;
26492654
case PCI_DEVICE_ID_ZSMB:
2650-
m = (typeof(m)){"LPe111", "PCIe", "Fibre Channel Adapter"};
2655+
m = (typeof(m)){"LPe111", "PCIe",
2656+
"Obsolete, Unsupported Fibre Channel Adapter"};
26512657
break;
26522658
case PCI_DEVICE_ID_LP101:
26532659
m = (typeof(m)){"LP101", "PCI-X",
@@ -2666,22 +2672,28 @@ lpfc_get_hba_model_desc(struct lpfc_hba *phba, uint8_t *mdp, uint8_t *descp)
26662672
"Obsolete, Unsupported Fibre Channel Adapter"};
26672673
break;
26682674
case PCI_DEVICE_ID_SAT:
2669-
m = (typeof(m)){"LPe12000", "PCIe", "Fibre Channel Adapter"};
2675+
m = (typeof(m)){"LPe12000", "PCIe",
2676+
"Obsolete, Unsupported Fibre Channel Adapter"};
26702677
break;
26712678
case PCI_DEVICE_ID_SAT_MID:
2672-
m = (typeof(m)){"LPe1250", "PCIe", "Fibre Channel Adapter"};
2679+
m = (typeof(m)){"LPe1250", "PCIe",
2680+
"Obsolete, Unsupported Fibre Channel Adapter"};
26732681
break;
26742682
case PCI_DEVICE_ID_SAT_SMB:
2675-
m = (typeof(m)){"LPe121", "PCIe", "Fibre Channel Adapter"};
2683+
m = (typeof(m)){"LPe121", "PCIe",
2684+
"Obsolete, Unsupported Fibre Channel Adapter"};
26762685
break;
26772686
case PCI_DEVICE_ID_SAT_DCSP:
2678-
m = (typeof(m)){"LPe12002-SP", "PCIe", "Fibre Channel Adapter"};
2687+
m = (typeof(m)){"LPe12002-SP", "PCIe",
2688+
"Obsolete, Unsupported Fibre Channel Adapter"};
26792689
break;
26802690
case PCI_DEVICE_ID_SAT_SCSP:
2681-
m = (typeof(m)){"LPe12000-SP", "PCIe", "Fibre Channel Adapter"};
2691+
m = (typeof(m)){"LPe12000-SP", "PCIe",
2692+
"Obsolete, Unsupported Fibre Channel Adapter"};
26822693
break;
26832694
case PCI_DEVICE_ID_SAT_S:
2684-
m = (typeof(m)){"LPe12000-S", "PCIe", "Fibre Channel Adapter"};
2695+
m = (typeof(m)){"LPe12000-S", "PCIe",
2696+
"Obsolete, Unsupported Fibre Channel Adapter"};
26852697
break;
26862698
case PCI_DEVICE_ID_PROTEUS_VF:
26872699
m = (typeof(m)){"LPev12000", "PCIe IOV",
@@ -2697,35 +2709,39 @@ lpfc_get_hba_model_desc(struct lpfc_hba *phba, uint8_t *mdp, uint8_t *descp)
26972709
break;
26982710
case PCI_DEVICE_ID_TIGERSHARK:
26992711
oneConnect = 1;
2700-
m = (typeof(m)){"OCe10100", "PCIe", "FCoE"};
2712+
m = (typeof(m)){"OCe10100", "PCIe",
2713+
"Obsolete, Unsupported FCoE Adapter"};
27012714
break;
27022715
case PCI_DEVICE_ID_TOMCAT:
27032716
oneConnect = 1;
2704-
m = (typeof(m)){"OCe11100", "PCIe", "FCoE"};
2717+
m = (typeof(m)){"OCe11100", "PCIe",
2718+
"Obsolete, Unsupported FCoE Adapter"};
27052719
break;
27062720
case PCI_DEVICE_ID_FALCON:
27072721
m = (typeof(m)){"LPSe12002-ML1-E", "PCIe",
2708-
"EmulexSecure Fibre"};
2722+
"Obsolete, Unsupported Fibre Channel Adapter"};
27092723
break;
27102724
case PCI_DEVICE_ID_BALIUS:
27112725
m = (typeof(m)){"LPVe12002", "PCIe Shared I/O",
27122726
"Obsolete, Unsupported Fibre Channel Adapter"};
27132727
break;
27142728
case PCI_DEVICE_ID_LANCER_FC:
2715-
m = (typeof(m)){"LPe16000", "PCIe", "Fibre Channel Adapter"};
2729+
m = (typeof(m)){"LPe16000", "PCIe",
2730+
"Obsolete, Unsupported Fibre Channel Adapter"};
27162731
break;
27172732
case PCI_DEVICE_ID_LANCER_FC_VF:
27182733
m = (typeof(m)){"LPe16000", "PCIe",
27192734
"Obsolete, Unsupported Fibre Channel Adapter"};
27202735
break;
27212736
case PCI_DEVICE_ID_LANCER_FCOE:
27222737
oneConnect = 1;
2723-
m = (typeof(m)){"OCe15100", "PCIe", "FCoE"};
2738+
m = (typeof(m)){"OCe15100", "PCIe",
2739+
"Obsolete, Unsupported FCoE Adapter"};
27242740
break;
27252741
case PCI_DEVICE_ID_LANCER_FCOE_VF:
27262742
oneConnect = 1;
27272743
m = (typeof(m)){"OCe15100", "PCIe",
2728-
"Obsolete, Unsupported FCoE"};
2744+
"Obsolete, Unsupported FCoE Adapter"};
27292745
break;
27302746
case PCI_DEVICE_ID_LANCER_G6_FC:
27312747
m = (typeof(m)){"LPe32000", "PCIe", "Fibre Channel Adapter"};
@@ -2739,7 +2755,8 @@ lpfc_get_hba_model_desc(struct lpfc_hba *phba, uint8_t *mdp, uint8_t *descp)
27392755
case PCI_DEVICE_ID_SKYHAWK:
27402756
case PCI_DEVICE_ID_SKYHAWK_VF:
27412757
oneConnect = 1;
2742-
m = (typeof(m)){"OCe14000", "PCIe", "FCoE"};
2758+
m = (typeof(m)){"OCe14000", "PCIe",
2759+
"Obsolete, Unsupported FCoE Adapter"};
27432760
break;
27442761
default:
27452762
m = (typeof(m)){"Unknown", "", ""};

0 commit comments

Comments
 (0)