scsi: target: drop unnecessary get_fabric_name() accessor from fabric_ops
All fabrics return a const string. In all cases *except* iSCSI the get_fabric_name() string matches fabric_ops.name. Both fabric_ops.get_fabric_name() and fabric_ops.name are user-facing, with the former being used for PR/ALUA state and the latter for ConfigFS (config/target/$name), so we unfortunately need to keep both strings around for now. Replace the useless .get_fabric_name() accessor function with a const string fabric_name member variable. Signed-off-by: David Disseldorp <ddiss@suse.de> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:

committed by
Martin K. Petersen

parent
6baca7601b
commit
30c7ca9350
@@ -460,11 +460,6 @@ static void tcm_loop_release_core_bus(void)
|
||||
pr_debug("Releasing TCM Loop Core BUS\n");
|
||||
}
|
||||
|
||||
static char *tcm_loop_get_fabric_name(void)
|
||||
{
|
||||
return "loopback";
|
||||
}
|
||||
|
||||
static inline struct tcm_loop_tpg *tl_tpg(struct se_portal_group *se_tpg)
|
||||
{
|
||||
return container_of(se_tpg, struct tcm_loop_tpg, tl_se_tpg);
|
||||
@@ -1150,7 +1145,7 @@ static struct configfs_attribute *tcm_loop_wwn_attrs[] = {
|
||||
static const struct target_core_fabric_ops loop_ops = {
|
||||
.module = THIS_MODULE,
|
||||
.name = "loopback",
|
||||
.get_fabric_name = tcm_loop_get_fabric_name,
|
||||
.fabric_name = "loopback",
|
||||
.tpg_get_wwn = tcm_loop_get_endpoint_wwn,
|
||||
.tpg_get_tag = tcm_loop_get_tag,
|
||||
.tpg_check_demo_mode = tcm_loop_check_demo_mode,
|
||||
|
Reference in New Issue
Block a user