Lines Matching refs:rx

41 static int dccp_hdlr_ccid(struct sock *sk, u64 ccid, bool rx)  in dccp_hdlr_ccid()  argument
44 struct ccid *new_ccid = ccid_new(ccid, sk, rx); in dccp_hdlr_ccid()
49 if (rx) { in dccp_hdlr_ccid()
59 static int dccp_hdlr_seq_win(struct sock *sk, u64 seq_win, bool rx) in dccp_hdlr_seq_win() argument
63 if (rx) { in dccp_hdlr_seq_win()
75 static int dccp_hdlr_ack_ratio(struct sock *sk, u64 ratio, bool rx) in dccp_hdlr_ack_ratio() argument
77 if (rx) in dccp_hdlr_ack_ratio()
84 static int dccp_hdlr_ackvec(struct sock *sk, u64 enable, bool rx) in dccp_hdlr_ackvec() argument
88 if (rx) { in dccp_hdlr_ackvec()
101 static int dccp_hdlr_ndp(struct sock *sk, u64 enable, bool rx) in dccp_hdlr_ndp() argument
103 if (!rx) in dccp_hdlr_ndp()
117 static int dccp_hdlr_min_cscov(struct sock *sk, u64 cscov, bool rx) in dccp_hdlr_min_cscov() argument
121 if (rx) in dccp_hdlr_min_cscov()
138 int (*activation_hdlr)(struct sock *sk, u64 val, bool rx);
311 bool rx; in __dccp_feat_activate() local
338 rx = (is_local == (dccp_feat_table[idx].rxtx == FEAT_AT_RX)); in __dccp_feat_activate()
340 dccp_debug(" -> activating %s %s, %sval=%llu\n", rx ? "RX" : "TX", in __dccp_feat_activate()
344 return dccp_feat_table[idx].activation_hdlr(sk, val, rx); in __dccp_feat_activate()
1448 } tx, rx; in dccp_feat_init() local
1475 ccid_get_builtin_ccids(&rx.val, &rx.len)) in dccp_feat_init()
1479 !dccp_feat_prefer(sysctl_dccp_rx_ccid, rx.val, rx.len)) in dccp_feat_init()
1486 rc = __feat_register_sp(fn, DCCPF_CCID, false, false, rx.val, rx.len); in dccp_feat_init()
1490 kfree(rx.val); in dccp_feat_init()