Lines Matching defs:isc_session
116 typedef struct isc_session { struct
118 int flags;
119 struct cdev *dev;
120 struct socket *soc;
121 struct file *fp;
122 struct thread *td;
124 struct proc *proc; // the userland process
125 int signal;
127 struct thread *soc_thr;
129 struct thread *stp; // the sm thread
131 struct isc_softc *isc;
133 digest_t *hdrDigest; // the digest alg. if any
134 digest_t *dataDigest; // the digest alg. if any
136 int sid; // Session ID
137 int targetid;
140 sn_t sn; // sequence number stuff;
141 int cws; // current window size
143 int target_nluns; // this and target_lun are
146 lun_id_t target_lun[ISCSI_MAX_LUNS];
148 struct mtx rsp_mtx;
149 struct mtx rsv_mtx;
150 struct mtx snd_mtx;
151 struct mtx hld_mtx;
152 struct mtx io_mtx;
176 } isc_session_t; argument