• Home
  • Raw
  • Download

Lines Matching defs:rxrpc_connection

463 struct rxrpc_connection {  struct
464 struct rxrpc_conn_proto proto;
465 struct rxrpc_local *local; /* Representation of local endpoint */
466 struct rxrpc_peer *peer; /* Remote endpoint */
467 struct rxrpc_net *rxnet; /* Network namespace to which call belongs */
468 struct key *key; /* Security details */
469 struct list_head attend_link; /* Link in local->conn_attend_q */
471 refcount_t ref;
472 atomic_t active; /* Active count for service conns */
473 struct rcu_head rcu;
474 struct list_head cache_link;
476 unsigned char act_chans; /* Mask of active channels */
477 struct rxrpc_channel {
489 } channels[RXRPC_MAXCALLS];
491 struct timer_list timer; /* Conn event timer */
492 struct work_struct processor; /* connection event processor */
493 struct work_struct destructor; /* In-process-context destroyer */
494 struct rxrpc_bundle *bundle; /* Client connection bundle */
495 struct rb_node service_node; /* Node in peer->service_conns */
496 struct list_head proc_link; /* link in procfs list */
497 struct list_head link; /* link in master connection list */
498 struct sk_buff_head rx_queue; /* received conn-level packets */
500 struct mutex security_lock; /* Lock for security management */
501 const struct rxrpc_security *security; /* applied security module */
502 union {
509 unsigned long flags;
510 unsigned long events;
511 unsigned long idle_timestamp; /* Time at which last became idle */
512 spinlock_t state_lock; /* state-change lock */
513 enum rxrpc_conn_proto_state state; /* current state of connection */
514 enum rxrpc_call_completion completion; /* Completion condition */
515 s32 abort_code; /* Abort code of connection abort */
516 int debug_id; /* debug ID for printks */
517 rxrpc_serial_t tx_serial; /* Outgoing packet serial number counter */
518 unsigned int hi_serial; /* highest serial number received */
519 u32 service_id; /* Service ID, possibly upgraded */
520 u32 security_level; /* Security level selected */
521 u8 security_ix; /* security type */
522 u8 out_clientflag; /* RXRPC_CLIENT_INITIATED if we are client */
523 u8 bundle_shift; /* Index into bundle->avail_chans */
524 bool exclusive; /* T if conn is exclusive */
525 bool upgrade; /* T if service ID can be upgraded */
526 u16 orig_service_id; /* Originally requested service ID */
527 short error; /* Local error code */