Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 302419
b: refs/heads/master
c: 33933a0
h: refs/heads/master
i:
  302417: 3d9e5ff
  302415: f812b56
v: v3
  • Loading branch information
Jörn Engel authored and Nicholas Bellinger committed May 11, 2012
1 parent a276891 commit 8c97714
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: d28d96dcf635410422b41eca5203b0470dd059c1
refs/heads/master: 33933a0e962bba4af32de7db912e2fdfef603d24
4 changes: 2 additions & 2 deletions trunk/drivers/target/target_core_transport.c
Original file line number Diff line number Diff line change
Expand Up @@ -330,9 +330,9 @@ void target_get_session(struct se_session *se_sess)
}
EXPORT_SYMBOL(target_get_session);

int target_put_session(struct se_session *se_sess)
void target_put_session(struct se_session *se_sess)
{
return kref_put(&se_sess->sess_kref, target_release_session);
kref_put(&se_sess->sess_kref, target_release_session);
}
EXPORT_SYMBOL(target_put_session);

Expand Down
2 changes: 1 addition & 1 deletion trunk/include/target/target_core_fabric.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ void __transport_register_session(struct se_portal_group *,
void transport_register_session(struct se_portal_group *,
struct se_node_acl *, struct se_session *, void *);
void target_get_session(struct se_session *);
int target_put_session(struct se_session *);
void target_put_session(struct se_session *);
void transport_free_session(struct se_session *);
void target_put_nacl(struct se_node_acl *);
void transport_deregister_session_configfs(struct se_session *);
Expand Down

0 comments on commit 8c97714

Please sign in to comment.