Lines Matching defs:gsm_mux
199 struct gsm_mux { struct
213 enum gsm_mux_state state; argument
225 void (*receive)(struct gsm_mux *gsm, u8 ch); argument
228 unsigned int mru;
229 unsigned int mtu;
230 int initiator; /* Did we initiate connection */
231 bool dead; /* Has the mux been shut down */
232 struct gsm_dlci *dlci[NUM_DLCI];
233 bool constipated; /* Asked by remote to shut up */
235 spinlock_t tx_lock;
236 unsigned int tx_bytes; /* TX data outstanding */
239 struct list_head tx_list; /* Pending data packets */
242 struct timer_list t2_timer; /* Retransmit timer for commands */
243 int cretries; /* Command retry counter */
244 struct gsm_control *pending_cmd;/* Our current pending command */
268 static struct gsm_mux *gsm_mux[MAX_MUX]; /* GSM muxes */ argument