aboutsummaryrefslogtreecommitdiffstats
path: root/include/scsi/libiscsi.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/scsi/libiscsi.h')
-rw-r--r--include/scsi/libiscsi.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/include/scsi/libiscsi.h b/include/scsi/libiscsi.h
index 5bf0187e7520..5e75bb7f311c 100644
--- a/include/scsi/libiscsi.h
+++ b/include/scsi/libiscsi.h
@@ -139,11 +139,6 @@ struct iscsi_conn {
139 void *dd_data; /* iscsi_transport data */ 139 void *dd_data; /* iscsi_transport data */
140 struct iscsi_session *session; /* parent session */ 140 struct iscsi_session *session; /* parent session */
141 /* 141 /*
142 * LLDs should set this lock. It protects the transport recv
143 * code
144 */
145 rwlock_t *recv_lock;
146 /*
147 * conn_stop() flag: stop to recover, stop to terminate 142 * conn_stop() flag: stop to recover, stop to terminate
148 */ 143 */
149 int stop_stage; 144 int stop_stage;
@@ -374,10 +369,13 @@ extern int iscsi_conn_send_pdu(struct iscsi_cls_conn *, struct iscsi_hdr *,
374 char *, uint32_t); 369 char *, uint32_t);
375extern int iscsi_complete_pdu(struct iscsi_conn *, struct iscsi_hdr *, 370extern int iscsi_complete_pdu(struct iscsi_conn *, struct iscsi_hdr *,
376 char *, int); 371 char *, int);
372extern int __iscsi_complete_pdu(struct iscsi_conn *, struct iscsi_hdr *,
373 char *, int);
377extern int iscsi_verify_itt(struct iscsi_conn *, itt_t); 374extern int iscsi_verify_itt(struct iscsi_conn *, itt_t);
378extern struct iscsi_task *iscsi_itt_to_ctask(struct iscsi_conn *, itt_t); 375extern struct iscsi_task *iscsi_itt_to_ctask(struct iscsi_conn *, itt_t);
379extern void iscsi_requeue_task(struct iscsi_task *task); 376extern void iscsi_requeue_task(struct iscsi_task *task);
380extern void iscsi_put_task(struct iscsi_task *task); 377extern void iscsi_put_task(struct iscsi_task *task);
378extern void __iscsi_get_task(struct iscsi_task *task);
381 379
382/* 380/*
383 * generic helpers 381 * generic helpers