Commit bc6e6bb4 authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Nicholas Bellinger

target: consolidate and fix session shutdown

Factor out a helper to shutdown sessions for a Node ACL, and make it
properly restart the list walk after dropping the lock.
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarNicholas Bellinger <nab@linux-iscsi.org>
parent 9730ffcb
...@@ -336,44 +336,47 @@ struct se_node_acl *core_tpg_add_initiator_node_acl( ...@@ -336,44 +336,47 @@ struct se_node_acl *core_tpg_add_initiator_node_acl(
return acl; return acl;
} }
void core_tpg_del_initiator_node_acl(struct se_node_acl *acl) static void target_shutdown_sessions(struct se_node_acl *acl, bool acl_stop)
{ {
struct se_portal_group *tpg = acl->se_tpg; struct se_session *sess;
LIST_HEAD(sess_list);
struct se_session *sess, *sess_tmp;
unsigned long flags; unsigned long flags;
int rc; int ret;
mutex_lock(&tpg->acl_node_mutex);
if (acl->dynamic_node_acl) {
acl->dynamic_node_acl = 0;
}
list_del(&acl->acl_list);
mutex_unlock(&tpg->acl_node_mutex);
spin_lock_irqsave(&acl->nacl_sess_lock, flags); spin_lock_irqsave(&acl->nacl_sess_lock, flags);
acl->acl_stop = 1; if (acl_stop)
acl->acl_stop = 1;
list_for_each_entry_safe(sess, sess_tmp, &acl->acl_sess_list, restart:
sess_acl_list) { list_for_each_entry(sess, &acl->acl_sess_list, sess_acl_list) {
if (sess->sess_tearing_down != 0) if (sess->sess_tearing_down)
continue; continue;
if (!target_get_session(sess)) if (!target_get_session(sess))
continue; continue;
list_move(&sess->sess_acl_list, &sess_list);
}
spin_unlock_irqrestore(&acl->nacl_sess_lock, flags);
list_for_each_entry_safe(sess, sess_tmp, &sess_list, sess_acl_list) {
list_del(&sess->sess_acl_list); list_del(&sess->sess_acl_list);
rc = tpg->se_tpg_tfo->shutdown_session(sess); spin_unlock_irqrestore(&acl->nacl_sess_lock, flags);
target_put_session(sess); ret = acl->se_tpg->se_tpg_tfo->shutdown_session(sess);
if (!rc)
continue;
target_put_session(sess); target_put_session(sess);
if (ret)
target_put_session(sess);
spin_lock_irqsave(&acl->nacl_sess_lock, flags);
goto restart;
} }
spin_unlock_irqrestore(&acl->nacl_sess_lock, flags);
}
void core_tpg_del_initiator_node_acl(struct se_node_acl *acl)
{
struct se_portal_group *tpg = acl->se_tpg;
mutex_lock(&tpg->acl_node_mutex);
if (acl->dynamic_node_acl)
acl->dynamic_node_acl = 0;
list_del(&acl->acl_list);
mutex_unlock(&tpg->acl_node_mutex);
target_shutdown_sessions(acl, true);
target_put_nacl(acl); target_put_nacl(acl);
/* /*
* Wait for last target_put_nacl() to complete in target_complete_nacl() * Wait for last target_put_nacl() to complete in target_complete_nacl()
...@@ -400,11 +403,7 @@ int core_tpg_set_initiator_node_queue_depth( ...@@ -400,11 +403,7 @@ int core_tpg_set_initiator_node_queue_depth(
struct se_node_acl *acl, struct se_node_acl *acl,
u32 queue_depth) u32 queue_depth)
{ {
LIST_HEAD(sess_list);
struct se_portal_group *tpg = acl->se_tpg; struct se_portal_group *tpg = acl->se_tpg;
struct se_session *sess, *sess_tmp;
unsigned long flags;
int rc;
/* /*
* User has requested to change the queue depth for a Initiator Node. * User has requested to change the queue depth for a Initiator Node.
...@@ -413,30 +412,10 @@ int core_tpg_set_initiator_node_queue_depth( ...@@ -413,30 +412,10 @@ int core_tpg_set_initiator_node_queue_depth(
*/ */
target_set_nacl_queue_depth(tpg, acl, queue_depth); target_set_nacl_queue_depth(tpg, acl, queue_depth);
spin_lock_irqsave(&acl->nacl_sess_lock, flags); /*
list_for_each_entry_safe(sess, sess_tmp, &acl->acl_sess_list, * Shutdown all pending sessions to force session reinstatement.
sess_acl_list) { */
if (sess->sess_tearing_down != 0) target_shutdown_sessions(acl, false);
continue;
if (!target_get_session(sess))
continue;
spin_unlock_irqrestore(&acl->nacl_sess_lock, flags);
/*
* Finally call tpg->se_tpg_tfo->close_session() to force session
* reinstatement to occur if there is an active session for the
* $FABRIC_MOD Initiator Node in question.
*/
rc = tpg->se_tpg_tfo->shutdown_session(sess);
target_put_session(sess);
if (!rc) {
spin_lock_irqsave(&acl->nacl_sess_lock, flags);
continue;
}
target_put_session(sess);
spin_lock_irqsave(&acl->nacl_sess_lock, flags);
}
spin_unlock_irqrestore(&acl->nacl_sess_lock, flags);
pr_debug("Successfully changed queue depth to: %d for Initiator" pr_debug("Successfully changed queue depth to: %d for Initiator"
" Node: %s on %s Target Portal Group: %u\n", acl->queue_depth, " Node: %s on %s Target Portal Group: %u\n", acl->queue_depth,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment