Lines Matching defs:se_softc
174 struct se_softc { struct
175 device_t sc_dev;
176 struct ethercom sc_ethercom; /* Ethernet common part */
177 struct scsipi_periph *sc_periph;/* contains our targ, lun, etc. */
179 struct callout sc_recv_ch;
180 struct kmutex sc_iflock;
181 struct if_percpuq *sc_ipq;
182 struct workqueue *sc_recv_wq, *sc_send_wq;
183 struct work sc_recv_work, sc_send_work;
184 int sc_recv_work_pending, sc_send_work_pending;
186 char *sc_tbuf;
187 char *sc_rbuf;
188 int protos;
194 int sc_debug;
218 static void se_recv(struct se_softc *); argument