Home
last modified time | relevance | path

Searched refs:ecn_flags (Results 1 – 6 of 6) sorted by relevance

/linux-4.4.14/net/ipv4/
Dtcp_dctcp.c88 if ((tp->ecn_flags & TCP_ECN_OK) || in dctcp_init()
141 tp->ecn_flags &= ~TCP_ECN_DEMAND_CWR; in dctcp_ce_state_0_to_1()
153 tp->ecn_flags |= TCP_ECN_DEMAND_CWR; in dctcp_ce_state_0_to_1()
171 tp->ecn_flags |= TCP_ECN_DEMAND_CWR; in dctcp_ce_state_1_to_0()
183 tp->ecn_flags &= ~TCP_ECN_DEMAND_CWR; in dctcp_ce_state_1_to_0()
Dtcp_input.c212 if (tp->ecn_flags & TCP_ECN_OK) in tcp_ecn_queue_cwr()
213 tp->ecn_flags |= TCP_ECN_QUEUE_CWR; in tcp_ecn_queue_cwr()
219 tp->ecn_flags &= ~TCP_ECN_DEMAND_CWR; in tcp_ecn_accept_cwr()
224 tp->ecn_flags &= ~TCP_ECN_DEMAND_CWR; in tcp_ecn_withdraw_cwr()
235 if (tp->ecn_flags & TCP_ECN_SEEN) in __tcp_ecn_check_ce()
242 if (!(tp->ecn_flags & TCP_ECN_DEMAND_CWR)) { in __tcp_ecn_check_ce()
245 tp->ecn_flags |= TCP_ECN_DEMAND_CWR; in __tcp_ecn_check_ce()
247 tp->ecn_flags |= TCP_ECN_SEEN; in __tcp_ecn_check_ce()
252 tp->ecn_flags |= TCP_ECN_SEEN; in __tcp_ecn_check_ce()
259 if (tp->ecn_flags & TCP_ECN_OK) in tcp_ecn_check_ce()
[all …]
Dtcp_output.c320 if (!(tp->ecn_flags & TCP_ECN_OK)) in tcp_ecn_send_synack()
340 tp->ecn_flags = 0; in tcp_ecn_send_syn()
344 tp->ecn_flags = TCP_ECN_OK; in tcp_ecn_send_syn()
374 if (tp->ecn_flags & TCP_ECN_OK) { in tcp_ecn_send()
379 if (tp->ecn_flags & TCP_ECN_QUEUE_CWR) { in tcp_ecn_send()
380 tp->ecn_flags &= ~TCP_ECN_QUEUE_CWR; in tcp_ecn_send()
388 if (tp->ecn_flags & TCP_ECN_DEMAND_CWR) in tcp_ecn_send()
Dtcp_minisocks.c406 tp->ecn_flags = inet_rsk(req)->ecn_ok ? TCP_ECN_OK : 0; in tcp_ecn_openreq_child()
Dtcp.c2665 if (tp->ecn_flags & TCP_ECN_OK) in tcp_get_info()
2667 if (tp->ecn_flags & TCP_ECN_SEEN) in tcp_get_info()
/linux-4.4.14/include/linux/
Dtcp.h236 u8 ecn_flags; /* ECN status bits. */ member