aboutsummaryrefslogtreecommitdiffstats
path: root/include/scsi
diff options
context:
space:
mode:
Diffstat (limited to 'include/scsi')
-rw-r--r--include/scsi/scsi_transport_iscsi.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/scsi/scsi_transport_iscsi.h b/include/scsi/scsi_transport_iscsi.h
index 7fff94b3b2a8..b9ba349ef257 100644
--- a/include/scsi/scsi_transport_iscsi.h
+++ b/include/scsi/scsi_transport_iscsi.h
@@ -160,6 +160,8 @@ struct iscsi_cls_conn {
160 void *dd_data; /* LLD private data */ 160 void *dd_data; /* LLD private data */
161 struct iscsi_transport *transport; 161 struct iscsi_transport *transport;
162 uint32_t cid; /* connection id */ 162 uint32_t cid; /* connection id */
163 struct mutex ep_mutex;
164 struct iscsi_endpoint *ep;
163 165
164 int active; /* must be accessed with the connlock */ 166 int active; /* must be accessed with the connlock */
165 struct device dev; /* sysfs transport/container device */ 167 struct device dev; /* sysfs transport/container device */
@@ -222,6 +224,7 @@ struct iscsi_endpoint {
222 void *dd_data; /* LLD private data */ 224 void *dd_data; /* LLD private data */
223 struct device dev; 225 struct device dev;
224 uint64_t id; 226 uint64_t id;
227 struct iscsi_cls_conn *conn;
225}; 228};
226 229
227/* 230/*