mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-20 11:13:58 +08:00
target: initialize the nacl base CIT begfore init_nodeacl
The iSCSI targets wants to add a default group, for which we need to have the list of default groups initialized previously. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
This commit is contained in:
parent
ce7043fd90
commit
e6e202edf0
@ -381,14 +381,6 @@ static struct config_group *target_fabric_make_nodeacl(
|
||||
if (IS_ERR(se_nacl))
|
||||
return ERR_CAST(se_nacl);
|
||||
|
||||
if (tf->tf_ops->fabric_init_nodeacl) {
|
||||
int ret = tf->tf_ops->fabric_init_nodeacl(se_nacl, name);
|
||||
if (ret) {
|
||||
core_tpg_del_initiator_node_acl(se_nacl);
|
||||
return ERR_PTR(ret);
|
||||
}
|
||||
}
|
||||
|
||||
config_group_init_type_name(&se_nacl->acl_group, name,
|
||||
&tf->tf_tpg_nacl_base_cit);
|
||||
|
||||
@ -412,6 +404,15 @@ static struct config_group *target_fabric_make_nodeacl(
|
||||
configfs_add_default_group(&se_nacl->acl_fabric_stat_group,
|
||||
&se_nacl->acl_group);
|
||||
|
||||
if (tf->tf_ops->fabric_init_nodeacl) {
|
||||
int ret = tf->tf_ops->fabric_init_nodeacl(se_nacl, name);
|
||||
if (ret) {
|
||||
configfs_remove_default_groups(&se_nacl->acl_fabric_stat_group);
|
||||
core_tpg_del_initiator_node_acl(se_nacl);
|
||||
return ERR_PTR(ret);
|
||||
}
|
||||
}
|
||||
|
||||
return &se_nacl->acl_group;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user