Lines Matching defs:rxrpc_connection

426 struct rxrpc_connection {  struct
427 struct rxrpc_conn_proto proto;
428 struct rxrpc_conn_parameters params;
430 atomic_t usage;
431 struct rcu_head rcu;
432 struct list_head cache_link;
434 unsigned char act_chans; /* Mask of active channels */
435 struct rxrpc_channel {
447 } channels[RXRPC_MAXCALLS];
449 struct timer_list timer; /* Conn event timer */
450 struct work_struct processor; /* connection event processor */
451 struct rxrpc_bundle *bundle; /* Client connection bundle */
452 struct rb_node service_node; /* Node in peer->service_conns */
453 struct list_head proc_link; /* link in procfs list */
454 struct list_head link; /* link in master connection list */
455 struct sk_buff_head rx_queue; /* received conn-level packets */
457 const struct rxrpc_security *security; /* applied security module */
458 union {
465 unsigned long flags;
466 unsigned long events;
467 unsigned long idle_timestamp; /* Time at which last became idle */
468 spinlock_t state_lock; /* state-change lock */
469 enum rxrpc_conn_proto_state state; /* current state of connection */
470 u32 abort_code; /* Abort code of connection abort */
471 int debug_id; /* debug ID for printks */
472 atomic_t serial; /* packet serial number counter */
473 unsigned int hi_serial; /* highest serial number received */
474 u32 service_id; /* Service ID, possibly upgraded */
475 u8 security_ix; /* security type */
476 u8 out_clientflag; /* RXRPC_CLIENT_INITIATED if we are client */
477 u8 bundle_shift; /* Index into bundle->avail_chans */
478 short error; /* Local error code */