Home
last modified time | relevance | path

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

/linux-4.1.27/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.c208 if (tp->ecn_flags & TCP_ECN_OK) in tcp_ecn_queue_cwr()
209 tp->ecn_flags |= TCP_ECN_QUEUE_CWR; in tcp_ecn_queue_cwr()
215 tp->ecn_flags &= ~TCP_ECN_DEMAND_CWR; in tcp_ecn_accept_cwr()
220 tp->ecn_flags &= ~TCP_ECN_DEMAND_CWR; in tcp_ecn_withdraw_cwr()
231 if (tp->ecn_flags & TCP_ECN_SEEN) in __tcp_ecn_check_ce()
238 if (!(tp->ecn_flags & TCP_ECN_DEMAND_CWR)) { in __tcp_ecn_check_ce()
241 tp->ecn_flags |= TCP_ECN_DEMAND_CWR; in __tcp_ecn_check_ce()
243 tp->ecn_flags |= TCP_ECN_SEEN; in __tcp_ecn_check_ce()
248 tp->ecn_flags |= TCP_ECN_SEEN; in __tcp_ecn_check_ce()
255 if (tp->ecn_flags & TCP_ECN_OK) in tcp_ecn_check_ce()
[all …]
Dtcp_output.c323 if (!(tp->ecn_flags & TCP_ECN_OK)) in tcp_ecn_send_synack()
343 tp->ecn_flags = 0; in tcp_ecn_send_syn()
347 tp->ecn_flags = TCP_ECN_OK; in tcp_ecn_send_syn()
372 if (tp->ecn_flags & TCP_ECN_OK) { in tcp_ecn_send()
377 if (tp->ecn_flags & TCP_ECN_QUEUE_CWR) { in tcp_ecn_send()
378 tp->ecn_flags &= ~TCP_ECN_QUEUE_CWR; in tcp_ecn_send()
386 if (tp->ecn_flags & TCP_ECN_DEMAND_CWR) in tcp_ecn_send()
Dtcp_minisocks.c400 tp->ecn_flags = inet_rsk(req)->ecn_ok ? TCP_ECN_OK : 0; in tcp_ecn_openreq_child()
Dtcp.c2628 if (tp->ecn_flags & TCP_ECN_OK) in tcp_get_info()
2630 if (tp->ecn_flags & TCP_ECN_SEEN) in tcp_get_info()
/linux-4.1.27/include/linux/
Dtcp.h220 u8 ecn_flags; /* ECN status bits. */ member