aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/libiscsi.c
diff options
context:
space:
mode:
authorMike Christie <michaelc@cs.wisc.edu>2009-05-13 18:57:41 -0400
committerJames Bottomley <James.Bottomley@HansenPartnership.com>2009-05-23 16:44:10 -0400
commit8f9256cea10ca43ac80f66e176643eb41db34244 (patch)
tree041a928f5ad598c60c9b9934a22c5714cc92170d /drivers/scsi/libiscsi.c
parent5700b1af93388544843a453e3c68f8f928bd1e88 (diff)
[SCSI] libiscsi: export iscsi_itt_to_task for bnx2i
bnx2i needs to be able to look up mgmt task like login and nop, because it does some processing of them on the completion path. This exports iscsi_itt_to_task so it can look up the task. Signed-off-by: Mike Christie <michaelc@cs.wisc.edu> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/libiscsi.c')
-rw-r--r--drivers/scsi/libiscsi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/scsi/libiscsi.c b/drivers/scsi/libiscsi.c
index b4aaf2e5fe7a..a6e6eef04fed 100644
--- a/drivers/scsi/libiscsi.c
+++ b/drivers/scsi/libiscsi.c
@@ -828,7 +828,7 @@ static int iscsi_handle_reject(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
828 * 828 *
829 * The session lock must be held. 829 * The session lock must be held.
830 */ 830 */
831static struct iscsi_task *iscsi_itt_to_task(struct iscsi_conn *conn, itt_t itt) 831struct iscsi_task *iscsi_itt_to_task(struct iscsi_conn *conn, itt_t itt)
832{ 832{
833 struct iscsi_session *session = conn->session; 833 struct iscsi_session *session = conn->session;
834 int i; 834 int i;
@@ -845,6 +845,7 @@ static struct iscsi_task *iscsi_itt_to_task(struct iscsi_conn *conn, itt_t itt)
845 845
846 return session->cmds[i]; 846 return session->cmds[i];
847} 847}
848EXPORT_SYMBOL_GPL(iscsi_itt_to_task);
848 849
849/** 850/**
850 * __iscsi_complete_pdu - complete pdu 851 * __iscsi_complete_pdu - complete pdu