Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 263287
b: refs/heads/master
c: e1750ba
h: refs/heads/master
i:
  263285: 190e466
  263283: 3adf739
  263279: 9f4d9d8
v: v3
  • Loading branch information
Thomas Meyer authored and Nicholas Bellinger committed Aug 22, 2011
1 parent c371778 commit 8d8b338
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 052605c6caa3e1edf8eee8fe5fe6d53f5721f39a
refs/heads/master: e1750ba20f0d850c38820190ccbf0f647723091a
4 changes: 2 additions & 2 deletions trunk/drivers/target/iscsi/iscsi_target_configfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ struct se_tpg_np *lio_target_call_addnptotpg(
ISCSI_TCP);
if (IS_ERR(tpg_np)) {
iscsit_put_tpg(tpg);
return ERR_PTR(PTR_ERR(tpg_np));
return ERR_CAST(tpg_np);
}
pr_debug("LIO_Target_ConfigFS: addnptotpg done!\n");

Expand Down Expand Up @@ -1285,7 +1285,7 @@ struct se_wwn *lio_target_call_coreaddtiqn(

tiqn = iscsit_add_tiqn((unsigned char *)name);
if (IS_ERR(tiqn))
return ERR_PTR(PTR_ERR(tiqn));
return ERR_CAST(tiqn);
/*
* Setup struct iscsi_wwn_stat_grps for se_wwn->fabric_stat_group.
*/
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/target/target_core_fabric_configfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ static struct config_group *target_fabric_make_nodeacl(

se_nacl = tf->tf_ops.fabric_make_nodeacl(se_tpg, group, name);
if (IS_ERR(se_nacl))
return ERR_PTR(PTR_ERR(se_nacl));
return ERR_CAST(se_nacl);

nacl_cg = &se_nacl->acl_group;
nacl_cg->default_groups = se_nacl->acl_default_groups;
Expand Down

0 comments on commit 8d8b338

Please sign in to comment.