mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-12-29 17:25:38 +00:00
scsi: efct: Remove default fabric ops callouts
Remove callouts that are identical to the default implementations in TCM Core. Signed-off-by: Dmitry Bogdanov <d.bogdanov@yadro.com> Link: https://lore.kernel.org/r/20230313181110.20566-12-d.bogdanov@yadro.com Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
237f109cee
commit
df02beb9af
@ -285,11 +285,6 @@ efct_lio_npiv_check_prod_write_protect(struct se_portal_group *se_tpg)
|
||||
return tpg->tpg_attrib.prod_mode_write_protect;
|
||||
}
|
||||
|
||||
static u32 efct_lio_tpg_get_inst_index(struct se_portal_group *se_tpg)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int efct_lio_check_stop_free(struct se_cmd *se_cmd)
|
||||
{
|
||||
struct efct_scsi_tgt_io *ocp =
|
||||
@ -355,15 +350,6 @@ static void efct_lio_close_session(struct se_session *se_sess)
|
||||
efc_node_post_shutdown(node, NULL);
|
||||
}
|
||||
|
||||
static u32 efct_lio_sess_get_index(struct se_session *se_sess)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void efct_lio_set_default_node_attrs(struct se_node_acl *nacl)
|
||||
{
|
||||
}
|
||||
|
||||
static int efct_lio_get_cmd_state(struct se_cmd *cmd)
|
||||
{
|
||||
struct efct_scsi_tgt_io *ocp =
|
||||
@ -1607,14 +1593,11 @@ static const struct target_core_fabric_ops efct_lio_ops = {
|
||||
.tpg_check_demo_mode_cache = efct_lio_check_demo_mode_cache,
|
||||
.tpg_check_demo_mode_write_protect = efct_lio_check_demo_write_protect,
|
||||
.tpg_check_prod_mode_write_protect = efct_lio_check_prod_write_protect,
|
||||
.tpg_get_inst_index = efct_lio_tpg_get_inst_index,
|
||||
.check_stop_free = efct_lio_check_stop_free,
|
||||
.aborted_task = efct_lio_aborted_task,
|
||||
.release_cmd = efct_lio_release_cmd,
|
||||
.close_session = efct_lio_close_session,
|
||||
.sess_get_index = efct_lio_sess_get_index,
|
||||
.write_pending = efct_lio_write_pending,
|
||||
.set_default_node_attributes = efct_lio_set_default_node_attrs,
|
||||
.get_cmd_state = efct_lio_get_cmd_state,
|
||||
.queue_data_in = efct_lio_queue_data_in,
|
||||
.queue_status = efct_lio_queue_status,
|
||||
@ -1644,14 +1627,11 @@ static const struct target_core_fabric_ops efct_lio_npiv_ops = {
|
||||
efct_lio_npiv_check_demo_write_protect,
|
||||
.tpg_check_prod_mode_write_protect =
|
||||
efct_lio_npiv_check_prod_write_protect,
|
||||
.tpg_get_inst_index = efct_lio_tpg_get_inst_index,
|
||||
.check_stop_free = efct_lio_check_stop_free,
|
||||
.aborted_task = efct_lio_aborted_task,
|
||||
.release_cmd = efct_lio_release_cmd,
|
||||
.close_session = efct_lio_close_session,
|
||||
.sess_get_index = efct_lio_sess_get_index,
|
||||
.write_pending = efct_lio_write_pending,
|
||||
.set_default_node_attributes = efct_lio_set_default_node_attrs,
|
||||
.get_cmd_state = efct_lio_get_cmd_state,
|
||||
.queue_data_in = efct_lio_queue_data_in,
|
||||
.queue_status = efct_lio_queue_status,
|
||||
|
Loading…
Reference in New Issue
Block a user