mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-13 00:29:50 +00:00
[SCSI] lpfc 8.1.10 : Add support to return adapter symbolic name
Add support to return adapter symbolic name (now that attribute is dynamic) Signed-off-by: James Smart <James.Smart@emulex.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
parent
d2873e4c1e
commit
ae36764a23
@ -1204,6 +1204,15 @@ lpfc_get_host_fabric_name (struct Scsi_Host *shost)
|
|||||||
fc_host_fabric_name(shost) = node_name;
|
fc_host_fabric_name(shost) = node_name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
lpfc_get_host_symbolic_name (struct Scsi_Host *shost)
|
||||||
|
{
|
||||||
|
struct lpfc_hba *phba = (struct lpfc_hba*)shost->hostdata;
|
||||||
|
|
||||||
|
spin_lock_irq(shost->host_lock);
|
||||||
|
lpfc_get_hba_sym_node_name(phba, fc_host_symbolic_name(shost));
|
||||||
|
spin_unlock_irq(shost->host_lock);
|
||||||
|
}
|
||||||
|
|
||||||
static struct fc_host_statistics *
|
static struct fc_host_statistics *
|
||||||
lpfc_get_stats(struct Scsi_Host *shost)
|
lpfc_get_stats(struct Scsi_Host *shost)
|
||||||
@ -1486,7 +1495,6 @@ struct fc_function_template lpfc_transport_functions = {
|
|||||||
.show_host_port_name = 1,
|
.show_host_port_name = 1,
|
||||||
.show_host_supported_classes = 1,
|
.show_host_supported_classes = 1,
|
||||||
.show_host_supported_fc4s = 1,
|
.show_host_supported_fc4s = 1,
|
||||||
.show_host_symbolic_name = 1,
|
|
||||||
.show_host_supported_speeds = 1,
|
.show_host_supported_speeds = 1,
|
||||||
.show_host_maxframe_size = 1,
|
.show_host_maxframe_size = 1,
|
||||||
|
|
||||||
@ -1509,6 +1517,9 @@ struct fc_function_template lpfc_transport_functions = {
|
|||||||
.get_host_fabric_name = lpfc_get_host_fabric_name,
|
.get_host_fabric_name = lpfc_get_host_fabric_name,
|
||||||
.show_host_fabric_name = 1,
|
.show_host_fabric_name = 1,
|
||||||
|
|
||||||
|
.get_host_symbolic_name = lpfc_get_host_symbolic_name,
|
||||||
|
.show_host_symbolic_name = 1,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The LPFC driver treats linkdown handling as target loss events
|
* The LPFC driver treats linkdown handling as target loss events
|
||||||
* so there are no sysfs handlers for link_down_tmo.
|
* so there are no sysfs handlers for link_down_tmo.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user