Lines Matching defs:rxrpc_connection

470 struct rxrpc_connection {  struct
471 struct rxrpc_conn_proto proto;
472 struct rxrpc_local *local; /* Representation of local endpoint */
473 struct rxrpc_peer *peer; /* Remote endpoint */
474 struct rxrpc_net *rxnet; /* Network namespace to which call belongs */
475 struct key *key; /* Security details */
476 struct list_head attend_link; /* Link in local->conn_attend_q */
478 refcount_t ref;
479 atomic_t active; /* Active count for service conns */
480 struct rcu_head rcu;
481 struct list_head cache_link;
483 unsigned char act_chans; /* Mask of active channels */
484 struct rxrpc_channel {
496 } channels[RXRPC_MAXCALLS];
498 struct timer_list timer; /* Conn event timer */
499 struct work_struct processor; /* connection event processor */
500 struct work_struct destructor; /* In-process-context destroyer */
501 struct rxrpc_bundle *bundle; /* Client connection bundle */
502 struct rb_node service_node; /* Node in peer->service_conns */
503 struct list_head proc_link; /* link in procfs list */
504 struct list_head link; /* link in master connection list */
505 struct sk_buff_head rx_queue; /* received conn-level packets */
506 struct page_frag_cache tx_data_alloc; /* Tx DATA packet allocation */
507 struct mutex tx_data_alloc_lock;
509 struct mutex security_lock; /* Lock for security management */
510 const struct rxrpc_security *security; /* applied security module */
511 union {
518 unsigned long flags;
519 unsigned long events;
520 unsigned long idle_timestamp; /* Time at which last became idle */
521 spinlock_t state_lock; /* state-change lock */
522 enum rxrpc_conn_proto_state state; /* current state of connection */
523 enum rxrpc_call_completion completion; /* Completion condition */
524 s32 abort_code; /* Abort code of connection abort */
525 int debug_id; /* debug ID for printks */
526 rxrpc_serial_t tx_serial; /* Outgoing packet serial number counter */
527 unsigned int hi_serial; /* highest serial number received */
528 u32 service_id; /* Service ID, possibly upgraded */
529 u32 security_level; /* Security level selected */
530 u8 security_ix; /* security type */
531 u8 out_clientflag; /* RXRPC_CLIENT_INITIATED if we are client */
532 u8 bundle_shift; /* Index into bundle->avail_chans */
533 bool exclusive; /* T if conn is exclusive */
534 bool upgrade; /* T if service ID can be upgraded */
535 u16 orig_service_id; /* Originally requested service ID */
536 short error; /* Local error code */