Lines Matching defs:rxrpc_connection

411 struct rxrpc_connection {  struct
412 struct rxrpc_conn_proto proto;
413 struct rxrpc_conn_parameters params;
415 atomic_t usage;
416 struct rcu_head rcu;
417 struct list_head cache_link;
419 unsigned char act_chans; /* Mask of active channels */
420 struct rxrpc_channel {
432 } channels[RXRPC_MAXCALLS];
434 struct timer_list timer; /* Conn event timer */
435 struct work_struct processor; /* connection event processor */
436 struct rxrpc_bundle *bundle; /* Client connection bundle */
437 struct rb_node service_node; /* Node in peer->service_conns */
438 struct list_head proc_link; /* link in procfs list */
439 struct list_head link; /* link in master connection list */
440 struct sk_buff_head rx_queue; /* received conn-level packets */
441 const struct rxrpc_security *security; /* applied security module */
442 struct key *server_key; /* security for this service */
443 struct crypto_sync_skcipher *cipher; /* encryption handle */
444 struct rxrpc_crypt csum_iv; /* packet checksum base */
445 unsigned long flags;
446 unsigned long events;
447 unsigned long idle_timestamp; /* Time at which last became idle */
448 spinlock_t state_lock; /* state-change lock */
449 enum rxrpc_conn_proto_state state; /* current state of connection */
450 u32 abort_code; /* Abort code of connection abort */
451 int debug_id; /* debug ID for printks */
452 atomic_t serial; /* packet serial number counter */
453 unsigned int hi_serial; /* highest serial number received */
454 u32 security_nonce; /* response re-use preventer */
455 u32 service_id; /* Service ID, possibly upgraded */
456 u8 size_align; /* data size alignment (for security) */
457 u8 security_size; /* security header size */
458 u8 security_ix; /* security type */
459 u8 out_clientflag; /* RXRPC_CLIENT_INITIATED if we are client */
460 u8 bundle_shift; /* Index into bundle->avail_chans */
461 short error; /* Local error code */