Searched refs:ca_ops (Results 1 – 3 of 3) sorted by relevance
/linux-4.1.27/net/ipv4/ |
D | inet_diag.c | 114 const struct tcp_congestion_ops *ca_ops; in inet_sk_diag_fill() local 216 ca_ops = READ_ONCE(icsk->icsk_ca_ops); in inet_sk_diag_fill() 217 if (ca_ops) in inet_sk_diag_fill() 218 err = nla_put_string(skb, INET_DIAG_CONG, ca_ops->name); in inet_sk_diag_fill() 232 ca_ops = READ_ONCE(icsk->icsk_ca_ops); in inet_sk_diag_fill() 233 if (ca_ops && ca_ops->get_info) in inet_sk_diag_fill() 234 sz = ca_ops->get_info(sk, ext, &attr, &info); in inet_sk_diag_fill()
|
D | tcp.c | 2754 const struct tcp_congestion_ops *ca_ops; in do_tcp_getsockopt() local 2762 ca_ops = icsk->icsk_ca_ops; in do_tcp_getsockopt() 2763 if (ca_ops && ca_ops->get_info) in do_tcp_getsockopt() 2764 sz = ca_ops->get_info(sk, ~0U, &attr, &info); in do_tcp_getsockopt()
|
D | tcp_input.c | 3162 const struct tcp_congestion_ops *ca_ops in tcp_clean_rtx_queue() local 3187 if (ca_ops->pkts_acked) { in tcp_clean_rtx_queue() 3189 ca_ops->pkts_acked(sk, pkts_acked, rtt_us); in tcp_clean_rtx_queue()
|