Home
last modified time | relevance | path

Searched refs:ca_ops (Results 1 – 2 of 2) sorted by relevance

/linux-4.4.14/net/ipv4/
Dinet_diag.c114 const struct tcp_congestion_ops *ca_ops; in inet_sk_diag_fill() local
220 ca_ops = READ_ONCE(icsk->icsk_ca_ops); in inet_sk_diag_fill()
221 if (ca_ops) in inet_sk_diag_fill()
222 err = nla_put_string(skb, INET_DIAG_CONG, ca_ops->name); in inet_sk_diag_fill()
236 ca_ops = READ_ONCE(icsk->icsk_ca_ops); in inet_sk_diag_fill()
237 if (ca_ops && ca_ops->get_info) in inet_sk_diag_fill()
238 sz = ca_ops->get_info(sk, ext, &attr, &info); in inet_sk_diag_fill()
Dtcp.c2793 const struct tcp_congestion_ops *ca_ops; in do_tcp_getsockopt() local
2801 ca_ops = icsk->icsk_ca_ops; in do_tcp_getsockopt()
2802 if (ca_ops && ca_ops->get_info) in do_tcp_getsockopt()
2803 sz = ca_ops->get_info(sk, ~0U, &attr, &info); in do_tcp_getsockopt()