Skip to content

Commit

Permalink
iscsi-target: Expose per endpoint dynamic_sessions attribute
Browse files Browse the repository at this point in the history
This patch exposes a new ../iscsi/$IQN/$TPGT/dynamic_sessions attribute
to dump the currently active sessions by iSCSI InitiatorName that have
been created with dynamically generated se_node_acls.

This information is useful so that user-space can optionally perform
dynamic -> explicit NodeACL conversion based on $INITIATOR_WWPN.

Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
  • Loading branch information
Nicholas Bellinger committed Mar 7, 2015
1 parent f8e471f commit d4ee46f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions drivers/target/iscsi/iscsi_target_configfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -1410,8 +1410,18 @@ static ssize_t lio_target_tpg_store_enable(

TF_TPG_BASE_ATTR(lio_target, enable, S_IRUGO | S_IWUSR);

static ssize_t lio_target_tpg_show_dynamic_sessions(
struct se_portal_group *se_tpg,
char *page)
{
return target_show_dynamic_sessions(se_tpg, page);
}

TF_TPG_BASE_ATTR_RO(lio_target, dynamic_sessions);

static struct configfs_attribute *lio_target_tpg_attrs[] = {
&lio_target_tpg_enable.attr,
&lio_target_tpg_dynamic_sessions.attr,
NULL,
};

Expand Down

0 comments on commit d4ee46f

Please sign in to comment.