target: Convert se_tpg->acl_node_lock to ->acl_node_mutex
This patch converts se_tpg->acl_node_lock to struct mutex, so that ->acl_node_acl walkers in core_clear_lun_from_tpg() can block when calling core_disable_device_list_for_node(). It also updates core_dev_add_lun() to hold ->acl_node_mutex when calling core_tpg_add_node_to_devs() to build ->lun_entry_hlist for dynamically generated se_node_acl. Reviewed-by: Hannes Reinecke <hare@suse.de> Cc: Christoph Hellwig <hch@lst.de> Cc: Sagi Grimberg <sagig@mellanox.com> Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
This commit is contained in:
parent
6bb826121b
commit
403edd78a2
|
@ -440,9 +440,8 @@ void core_clear_lun_from_tpg(struct se_lun *lun, struct se_portal_group *tpg)
|
||||||
struct se_node_acl *nacl;
|
struct se_node_acl *nacl;
|
||||||
struct se_dev_entry *deve;
|
struct se_dev_entry *deve;
|
||||||
|
|
||||||
spin_lock_irq(&tpg->acl_node_lock);
|
mutex_lock(&tpg->acl_node_mutex);
|
||||||
list_for_each_entry(nacl, &tpg->acl_node_list, acl_list) {
|
list_for_each_entry(nacl, &tpg->acl_node_list, acl_list) {
|
||||||
spin_unlock_irq(&tpg->acl_node_lock);
|
|
||||||
|
|
||||||
mutex_lock(&nacl->lun_entry_mutex);
|
mutex_lock(&nacl->lun_entry_mutex);
|
||||||
hlist_for_each_entry_rcu(deve, &nacl->lun_entry_hlist, link) {
|
hlist_for_each_entry_rcu(deve, &nacl->lun_entry_hlist, link) {
|
||||||
|
@ -455,10 +454,8 @@ void core_clear_lun_from_tpg(struct se_lun *lun, struct se_portal_group *tpg)
|
||||||
core_disable_device_list_for_node(lun, deve, nacl, tpg);
|
core_disable_device_list_for_node(lun, deve, nacl, tpg);
|
||||||
}
|
}
|
||||||
mutex_unlock(&nacl->lun_entry_mutex);
|
mutex_unlock(&nacl->lun_entry_mutex);
|
||||||
|
|
||||||
spin_lock_irq(&tpg->acl_node_lock);
|
|
||||||
}
|
}
|
||||||
spin_unlock_irq(&tpg->acl_node_lock);
|
mutex_unlock(&tpg->acl_node_mutex);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct se_port *core_alloc_port(struct se_device *dev)
|
static struct se_port *core_alloc_port(struct se_device *dev)
|
||||||
|
@ -1194,17 +1191,16 @@ int core_dev_add_lun(
|
||||||
*/
|
*/
|
||||||
if (tpg->se_tpg_tfo->tpg_check_demo_mode(tpg)) {
|
if (tpg->se_tpg_tfo->tpg_check_demo_mode(tpg)) {
|
||||||
struct se_node_acl *acl;
|
struct se_node_acl *acl;
|
||||||
spin_lock_irq(&tpg->acl_node_lock);
|
|
||||||
|
mutex_lock(&tpg->acl_node_mutex);
|
||||||
list_for_each_entry(acl, &tpg->acl_node_list, acl_list) {
|
list_for_each_entry(acl, &tpg->acl_node_list, acl_list) {
|
||||||
if (acl->dynamic_node_acl &&
|
if (acl->dynamic_node_acl &&
|
||||||
(!tpg->se_tpg_tfo->tpg_check_demo_mode_login_only ||
|
(!tpg->se_tpg_tfo->tpg_check_demo_mode_login_only ||
|
||||||
!tpg->se_tpg_tfo->tpg_check_demo_mode_login_only(tpg))) {
|
!tpg->se_tpg_tfo->tpg_check_demo_mode_login_only(tpg))) {
|
||||||
spin_unlock_irq(&tpg->acl_node_lock);
|
|
||||||
core_tpg_add_node_to_devs(acl, tpg);
|
core_tpg_add_node_to_devs(acl, tpg);
|
||||||
spin_lock_irq(&tpg->acl_node_lock);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
spin_unlock_irq(&tpg->acl_node_lock);
|
mutex_unlock(&tpg->acl_node_mutex);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -1589,12 +1589,12 @@ core_scsi3_decode_spec_i_port(
|
||||||
* from the decoded fabric module specific TransportID
|
* from the decoded fabric module specific TransportID
|
||||||
* at *i_str.
|
* at *i_str.
|
||||||
*/
|
*/
|
||||||
spin_lock_irq(&tmp_tpg->acl_node_lock);
|
mutex_lock(&tmp_tpg->acl_node_mutex);
|
||||||
dest_node_acl = __core_tpg_get_initiator_node_acl(
|
dest_node_acl = __core_tpg_get_initiator_node_acl(
|
||||||
tmp_tpg, i_str);
|
tmp_tpg, i_str);
|
||||||
if (dest_node_acl)
|
if (dest_node_acl)
|
||||||
atomic_inc_mb(&dest_node_acl->acl_pr_ref_count);
|
atomic_inc_mb(&dest_node_acl->acl_pr_ref_count);
|
||||||
spin_unlock_irq(&tmp_tpg->acl_node_lock);
|
mutex_unlock(&tmp_tpg->acl_node_mutex);
|
||||||
|
|
||||||
if (!dest_node_acl) {
|
if (!dest_node_acl) {
|
||||||
core_scsi3_tpg_undepend_item(tmp_tpg);
|
core_scsi3_tpg_undepend_item(tmp_tpg);
|
||||||
|
@ -3308,12 +3308,12 @@ after_iport_check:
|
||||||
/*
|
/*
|
||||||
* Locate the destination struct se_node_acl from the received Transport ID
|
* Locate the destination struct se_node_acl from the received Transport ID
|
||||||
*/
|
*/
|
||||||
spin_lock_irq(&dest_se_tpg->acl_node_lock);
|
mutex_lock(&dest_se_tpg->acl_node_mutex);
|
||||||
dest_node_acl = __core_tpg_get_initiator_node_acl(dest_se_tpg,
|
dest_node_acl = __core_tpg_get_initiator_node_acl(dest_se_tpg,
|
||||||
initiator_str);
|
initiator_str);
|
||||||
if (dest_node_acl)
|
if (dest_node_acl)
|
||||||
atomic_inc_mb(&dest_node_acl->acl_pr_ref_count);
|
atomic_inc_mb(&dest_node_acl->acl_pr_ref_count);
|
||||||
spin_unlock_irq(&dest_se_tpg->acl_node_lock);
|
mutex_unlock(&dest_se_tpg->acl_node_mutex);
|
||||||
|
|
||||||
if (!dest_node_acl) {
|
if (!dest_node_acl) {
|
||||||
pr_err("Unable to locate %s dest_node_acl for"
|
pr_err("Unable to locate %s dest_node_acl for"
|
||||||
|
|
|
@ -49,7 +49,7 @@ static LIST_HEAD(tpg_list);
|
||||||
|
|
||||||
/* __core_tpg_get_initiator_node_acl():
|
/* __core_tpg_get_initiator_node_acl():
|
||||||
*
|
*
|
||||||
* spin_lock_bh(&tpg->acl_node_lock); must be held when calling
|
* mutex_lock(&tpg->acl_node_mutex); must be held when calling
|
||||||
*/
|
*/
|
||||||
struct se_node_acl *__core_tpg_get_initiator_node_acl(
|
struct se_node_acl *__core_tpg_get_initiator_node_acl(
|
||||||
struct se_portal_group *tpg,
|
struct se_portal_group *tpg,
|
||||||
|
@ -75,9 +75,9 @@ struct se_node_acl *core_tpg_get_initiator_node_acl(
|
||||||
{
|
{
|
||||||
struct se_node_acl *acl;
|
struct se_node_acl *acl;
|
||||||
|
|
||||||
spin_lock_irq(&tpg->acl_node_lock);
|
mutex_lock(&tpg->acl_node_mutex);
|
||||||
acl = __core_tpg_get_initiator_node_acl(tpg, initiatorname);
|
acl = __core_tpg_get_initiator_node_acl(tpg, initiatorname);
|
||||||
spin_unlock_irq(&tpg->acl_node_lock);
|
mutex_unlock(&tpg->acl_node_mutex);
|
||||||
|
|
||||||
return acl;
|
return acl;
|
||||||
}
|
}
|
||||||
|
@ -198,10 +198,10 @@ static void target_add_node_acl(struct se_node_acl *acl)
|
||||||
{
|
{
|
||||||
struct se_portal_group *tpg = acl->se_tpg;
|
struct se_portal_group *tpg = acl->se_tpg;
|
||||||
|
|
||||||
spin_lock_irq(&tpg->acl_node_lock);
|
mutex_lock(&tpg->acl_node_mutex);
|
||||||
list_add_tail(&acl->acl_list, &tpg->acl_node_list);
|
list_add_tail(&acl->acl_list, &tpg->acl_node_list);
|
||||||
tpg->num_node_acls++;
|
tpg->num_node_acls++;
|
||||||
spin_unlock_irq(&tpg->acl_node_lock);
|
mutex_unlock(&tpg->acl_node_mutex);
|
||||||
|
|
||||||
pr_debug("%s_TPG[%hu] - Added %s ACL with TCQ Depth: %d for %s"
|
pr_debug("%s_TPG[%hu] - Added %s ACL with TCQ Depth: %d for %s"
|
||||||
" Initiator Node: %s\n",
|
" Initiator Node: %s\n",
|
||||||
|
@ -257,7 +257,7 @@ struct se_node_acl *core_tpg_add_initiator_node_acl(
|
||||||
{
|
{
|
||||||
struct se_node_acl *acl;
|
struct se_node_acl *acl;
|
||||||
|
|
||||||
spin_lock_irq(&tpg->acl_node_lock);
|
mutex_lock(&tpg->acl_node_mutex);
|
||||||
acl = __core_tpg_get_initiator_node_acl(tpg, initiatorname);
|
acl = __core_tpg_get_initiator_node_acl(tpg, initiatorname);
|
||||||
if (acl) {
|
if (acl) {
|
||||||
if (acl->dynamic_node_acl) {
|
if (acl->dynamic_node_acl) {
|
||||||
|
@ -265,7 +265,7 @@ struct se_node_acl *core_tpg_add_initiator_node_acl(
|
||||||
pr_debug("%s_TPG[%u] - Replacing dynamic ACL"
|
pr_debug("%s_TPG[%u] - Replacing dynamic ACL"
|
||||||
" for %s\n", tpg->se_tpg_tfo->get_fabric_name(),
|
" for %s\n", tpg->se_tpg_tfo->get_fabric_name(),
|
||||||
tpg->se_tpg_tfo->tpg_get_tag(tpg), initiatorname);
|
tpg->se_tpg_tfo->tpg_get_tag(tpg), initiatorname);
|
||||||
spin_unlock_irq(&tpg->acl_node_lock);
|
mutex_unlock(&tpg->acl_node_mutex);
|
||||||
return acl;
|
return acl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -273,10 +273,10 @@ struct se_node_acl *core_tpg_add_initiator_node_acl(
|
||||||
" Node %s already exists for TPG %u, ignoring"
|
" Node %s already exists for TPG %u, ignoring"
|
||||||
" request.\n", tpg->se_tpg_tfo->get_fabric_name(),
|
" request.\n", tpg->se_tpg_tfo->get_fabric_name(),
|
||||||
initiatorname, tpg->se_tpg_tfo->tpg_get_tag(tpg));
|
initiatorname, tpg->se_tpg_tfo->tpg_get_tag(tpg));
|
||||||
spin_unlock_irq(&tpg->acl_node_lock);
|
mutex_unlock(&tpg->acl_node_mutex);
|
||||||
return ERR_PTR(-EEXIST);
|
return ERR_PTR(-EEXIST);
|
||||||
}
|
}
|
||||||
spin_unlock_irq(&tpg->acl_node_lock);
|
mutex_unlock(&tpg->acl_node_mutex);
|
||||||
|
|
||||||
acl = target_alloc_node_acl(tpg, initiatorname);
|
acl = target_alloc_node_acl(tpg, initiatorname);
|
||||||
if (!acl)
|
if (!acl)
|
||||||
|
@ -294,13 +294,13 @@ void core_tpg_del_initiator_node_acl(struct se_node_acl *acl)
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
spin_lock_irq(&tpg->acl_node_lock);
|
mutex_lock(&tpg->acl_node_mutex);
|
||||||
if (acl->dynamic_node_acl) {
|
if (acl->dynamic_node_acl) {
|
||||||
acl->dynamic_node_acl = 0;
|
acl->dynamic_node_acl = 0;
|
||||||
}
|
}
|
||||||
list_del(&acl->acl_list);
|
list_del(&acl->acl_list);
|
||||||
tpg->num_node_acls--;
|
tpg->num_node_acls--;
|
||||||
spin_unlock_irq(&tpg->acl_node_lock);
|
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;
|
acl->acl_stop = 1;
|
||||||
|
@ -357,21 +357,21 @@ int core_tpg_set_initiator_node_queue_depth(
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
int dynamic_acl = 0;
|
int dynamic_acl = 0;
|
||||||
|
|
||||||
spin_lock_irq(&tpg->acl_node_lock);
|
mutex_lock(&tpg->acl_node_mutex);
|
||||||
acl = __core_tpg_get_initiator_node_acl(tpg, initiatorname);
|
acl = __core_tpg_get_initiator_node_acl(tpg, initiatorname);
|
||||||
if (!acl) {
|
if (!acl) {
|
||||||
pr_err("Access Control List entry for %s Initiator"
|
pr_err("Access Control List entry for %s Initiator"
|
||||||
" Node %s does not exists for TPG %hu, ignoring"
|
" Node %s does not exists for TPG %hu, ignoring"
|
||||||
" request.\n", tpg->se_tpg_tfo->get_fabric_name(),
|
" request.\n", tpg->se_tpg_tfo->get_fabric_name(),
|
||||||
initiatorname, tpg->se_tpg_tfo->tpg_get_tag(tpg));
|
initiatorname, tpg->se_tpg_tfo->tpg_get_tag(tpg));
|
||||||
spin_unlock_irq(&tpg->acl_node_lock);
|
mutex_unlock(&tpg->acl_node_mutex);
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
}
|
}
|
||||||
if (acl->dynamic_node_acl) {
|
if (acl->dynamic_node_acl) {
|
||||||
acl->dynamic_node_acl = 0;
|
acl->dynamic_node_acl = 0;
|
||||||
dynamic_acl = 1;
|
dynamic_acl = 1;
|
||||||
}
|
}
|
||||||
spin_unlock_irq(&tpg->acl_node_lock);
|
mutex_unlock(&tpg->acl_node_mutex);
|
||||||
|
|
||||||
spin_lock_irqsave(&tpg->session_lock, flags);
|
spin_lock_irqsave(&tpg->session_lock, flags);
|
||||||
list_for_each_entry(sess, &tpg->tpg_sess_list, sess_list) {
|
list_for_each_entry(sess, &tpg->tpg_sess_list, sess_list) {
|
||||||
|
@ -387,10 +387,10 @@ int core_tpg_set_initiator_node_queue_depth(
|
||||||
tpg->se_tpg_tfo->get_fabric_name(), initiatorname);
|
tpg->se_tpg_tfo->get_fabric_name(), initiatorname);
|
||||||
spin_unlock_irqrestore(&tpg->session_lock, flags);
|
spin_unlock_irqrestore(&tpg->session_lock, flags);
|
||||||
|
|
||||||
spin_lock_irq(&tpg->acl_node_lock);
|
mutex_lock(&tpg->acl_node_mutex);
|
||||||
if (dynamic_acl)
|
if (dynamic_acl)
|
||||||
acl->dynamic_node_acl = 1;
|
acl->dynamic_node_acl = 1;
|
||||||
spin_unlock_irq(&tpg->acl_node_lock);
|
mutex_unlock(&tpg->acl_node_mutex);
|
||||||
return -EEXIST;
|
return -EEXIST;
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
|
@ -425,10 +425,10 @@ int core_tpg_set_initiator_node_queue_depth(
|
||||||
if (init_sess)
|
if (init_sess)
|
||||||
tpg->se_tpg_tfo->close_session(init_sess);
|
tpg->se_tpg_tfo->close_session(init_sess);
|
||||||
|
|
||||||
spin_lock_irq(&tpg->acl_node_lock);
|
mutex_lock(&tpg->acl_node_mutex);
|
||||||
if (dynamic_acl)
|
if (dynamic_acl)
|
||||||
acl->dynamic_node_acl = 1;
|
acl->dynamic_node_acl = 1;
|
||||||
spin_unlock_irq(&tpg->acl_node_lock);
|
mutex_unlock(&tpg->acl_node_mutex);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
spin_unlock_irqrestore(&tpg->session_lock, flags);
|
spin_unlock_irqrestore(&tpg->session_lock, flags);
|
||||||
|
@ -444,10 +444,10 @@ int core_tpg_set_initiator_node_queue_depth(
|
||||||
initiatorname, tpg->se_tpg_tfo->get_fabric_name(),
|
initiatorname, tpg->se_tpg_tfo->get_fabric_name(),
|
||||||
tpg->se_tpg_tfo->tpg_get_tag(tpg));
|
tpg->se_tpg_tfo->tpg_get_tag(tpg));
|
||||||
|
|
||||||
spin_lock_irq(&tpg->acl_node_lock);
|
mutex_lock(&tpg->acl_node_mutex);
|
||||||
if (dynamic_acl)
|
if (dynamic_acl)
|
||||||
acl->dynamic_node_acl = 1;
|
acl->dynamic_node_acl = 1;
|
||||||
spin_unlock_irq(&tpg->acl_node_lock);
|
mutex_unlock(&tpg->acl_node_mutex);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -521,9 +521,9 @@ int core_tpg_register(
|
||||||
INIT_LIST_HEAD(&se_tpg->acl_node_list);
|
INIT_LIST_HEAD(&se_tpg->acl_node_list);
|
||||||
INIT_LIST_HEAD(&se_tpg->se_tpg_node);
|
INIT_LIST_HEAD(&se_tpg->se_tpg_node);
|
||||||
INIT_LIST_HEAD(&se_tpg->tpg_sess_list);
|
INIT_LIST_HEAD(&se_tpg->tpg_sess_list);
|
||||||
spin_lock_init(&se_tpg->acl_node_lock);
|
|
||||||
spin_lock_init(&se_tpg->session_lock);
|
spin_lock_init(&se_tpg->session_lock);
|
||||||
mutex_init(&se_tpg->tpg_lun_mutex);
|
mutex_init(&se_tpg->tpg_lun_mutex);
|
||||||
|
mutex_init(&se_tpg->acl_node_mutex);
|
||||||
|
|
||||||
if (se_tpg->proto_id >= 0) {
|
if (se_tpg->proto_id >= 0) {
|
||||||
if (core_tpg_setup_virtual_lun0(se_tpg) < 0)
|
if (core_tpg_setup_virtual_lun0(se_tpg) < 0)
|
||||||
|
@ -559,25 +559,26 @@ int core_tpg_deregister(struct se_portal_group *se_tpg)
|
||||||
|
|
||||||
while (atomic_read(&se_tpg->tpg_pr_ref_count) != 0)
|
while (atomic_read(&se_tpg->tpg_pr_ref_count) != 0)
|
||||||
cpu_relax();
|
cpu_relax();
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Release any remaining demo-mode generated se_node_acl that have
|
* Release any remaining demo-mode generated se_node_acl that have
|
||||||
* not been released because of TFO->tpg_check_demo_mode_cache() == 1
|
* not been released because of TFO->tpg_check_demo_mode_cache() == 1
|
||||||
* in transport_deregister_session().
|
* in transport_deregister_session().
|
||||||
*/
|
*/
|
||||||
spin_lock_irq(&se_tpg->acl_node_lock);
|
mutex_lock(&se_tpg->acl_node_mutex);
|
||||||
list_for_each_entry_safe(nacl, nacl_tmp, &se_tpg->acl_node_list,
|
list_for_each_entry_safe(nacl, nacl_tmp, &se_tpg->acl_node_list,
|
||||||
acl_list) {
|
acl_list) {
|
||||||
list_del(&nacl->acl_list);
|
list_del(&nacl->acl_list);
|
||||||
se_tpg->num_node_acls--;
|
se_tpg->num_node_acls--;
|
||||||
spin_unlock_irq(&se_tpg->acl_node_lock);
|
mutex_unlock(&se_tpg->acl_node_mutex);
|
||||||
|
|
||||||
core_tpg_wait_for_nacl_pr_ref(nacl);
|
core_tpg_wait_for_nacl_pr_ref(nacl);
|
||||||
core_free_device_list_for_node(nacl, se_tpg);
|
core_free_device_list_for_node(nacl, se_tpg);
|
||||||
kfree(nacl);
|
kfree(nacl);
|
||||||
|
|
||||||
spin_lock_irq(&se_tpg->acl_node_lock);
|
mutex_lock(&se_tpg->acl_node_mutex);
|
||||||
}
|
}
|
||||||
spin_unlock_irq(&se_tpg->acl_node_lock);
|
mutex_unlock(&se_tpg->acl_node_mutex);
|
||||||
|
|
||||||
if (se_tpg->proto_id >= 0)
|
if (se_tpg->proto_id >= 0)
|
||||||
core_tpg_remove_lun(se_tpg, &se_tpg->tpg_virt_lun0);
|
core_tpg_remove_lun(se_tpg, &se_tpg->tpg_virt_lun0);
|
||||||
|
|
|
@ -498,7 +498,7 @@ void transport_deregister_session(struct se_session *se_sess)
|
||||||
const struct target_core_fabric_ops *se_tfo;
|
const struct target_core_fabric_ops *se_tfo;
|
||||||
struct se_node_acl *se_nacl;
|
struct se_node_acl *se_nacl;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
bool comp_nacl = true;
|
bool comp_nacl = true, drop_nacl = false;
|
||||||
|
|
||||||
if (!se_tpg) {
|
if (!se_tpg) {
|
||||||
transport_free_session(se_sess);
|
transport_free_session(se_sess);
|
||||||
|
@ -518,22 +518,22 @@ void transport_deregister_session(struct se_session *se_sess)
|
||||||
*/
|
*/
|
||||||
se_nacl = se_sess->se_node_acl;
|
se_nacl = se_sess->se_node_acl;
|
||||||
|
|
||||||
spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
|
mutex_lock(&se_tpg->acl_node_mutex);
|
||||||
if (se_nacl && se_nacl->dynamic_node_acl) {
|
if (se_nacl && se_nacl->dynamic_node_acl) {
|
||||||
if (!se_tfo->tpg_check_demo_mode_cache(se_tpg)) {
|
if (!se_tfo->tpg_check_demo_mode_cache(se_tpg)) {
|
||||||
list_del(&se_nacl->acl_list);
|
list_del(&se_nacl->acl_list);
|
||||||
se_tpg->num_node_acls--;
|
se_tpg->num_node_acls--;
|
||||||
spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
|
drop_nacl = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
mutex_unlock(&se_tpg->acl_node_mutex);
|
||||||
|
|
||||||
|
if (drop_nacl) {
|
||||||
core_tpg_wait_for_nacl_pr_ref(se_nacl);
|
core_tpg_wait_for_nacl_pr_ref(se_nacl);
|
||||||
core_free_device_list_for_node(se_nacl, se_tpg);
|
core_free_device_list_for_node(se_nacl, se_tpg);
|
||||||
kfree(se_nacl);
|
kfree(se_nacl);
|
||||||
|
|
||||||
comp_nacl = false;
|
comp_nacl = false;
|
||||||
spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
|
|
||||||
|
|
||||||
pr_debug("TARGET_CORE[%s]: Deregistered fabric_sess\n",
|
pr_debug("TARGET_CORE[%s]: Deregistered fabric_sess\n",
|
||||||
se_tpg->se_tpg_tfo->get_fabric_name());
|
se_tpg->se_tpg_tfo->get_fabric_name());
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -217,7 +217,7 @@ struct ft_node_acl *ft_acl_get(struct ft_tpg *tpg, struct fc_rport_priv *rdata)
|
||||||
struct se_portal_group *se_tpg = &tpg->se_tpg;
|
struct se_portal_group *se_tpg = &tpg->se_tpg;
|
||||||
struct se_node_acl *se_acl;
|
struct se_node_acl *se_acl;
|
||||||
|
|
||||||
spin_lock_irq(&se_tpg->acl_node_lock);
|
mutex_lock(&se_tpg->acl_node_mutex);
|
||||||
list_for_each_entry(se_acl, &se_tpg->acl_node_list, acl_list) {
|
list_for_each_entry(se_acl, &se_tpg->acl_node_list, acl_list) {
|
||||||
acl = container_of(se_acl, struct ft_node_acl, se_node_acl);
|
acl = container_of(se_acl, struct ft_node_acl, se_node_acl);
|
||||||
pr_debug("acl %p port_name %llx\n",
|
pr_debug("acl %p port_name %llx\n",
|
||||||
|
@ -231,7 +231,7 @@ struct ft_node_acl *ft_acl_get(struct ft_tpg *tpg, struct fc_rport_priv *rdata)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
spin_unlock_irq(&se_tpg->acl_node_lock);
|
mutex_unlock(&se_tpg->acl_node_mutex);
|
||||||
return found;
|
return found;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -876,7 +876,7 @@ struct se_portal_group {
|
||||||
/* Used for PR SPEC_I_PT=1 and REGISTER_AND_MOVE */
|
/* Used for PR SPEC_I_PT=1 and REGISTER_AND_MOVE */
|
||||||
atomic_t tpg_pr_ref_count;
|
atomic_t tpg_pr_ref_count;
|
||||||
/* Spinlock for adding/removing ACLed Nodes */
|
/* Spinlock for adding/removing ACLed Nodes */
|
||||||
spinlock_t acl_node_lock;
|
struct mutex acl_node_mutex;
|
||||||
/* Spinlock for adding/removing sessions */
|
/* Spinlock for adding/removing sessions */
|
||||||
spinlock_t session_lock;
|
spinlock_t session_lock;
|
||||||
struct mutex tpg_lun_mutex;
|
struct mutex tpg_lun_mutex;
|
||||||
|
|
Loading…
Reference in New Issue