Searched refs:snd_wnd (Results 1 – 11 of 11) sorted by relevance
/linux-4.1.27/net/ipv4/ |
D | tcp_probe.c | 69 u32 snd_wnd; member 152 p->snd_wnd = tp->snd_wnd; in jtcp_rcv_established() 198 p->snd_cwnd, p->ssthresh, p->snd_wnd, p->srtt, p->rcv_wnd); in tcpprobe_sprint()
|
D | tcp_timer.c | 74 (!tp->snd_wnd && !tp->packets_out)) in tcp_out_of_resources() 384 if (!tp->snd_wnd && !sock_flag(sk, SOCK_DEAD) && in tcp_retransmit_timer()
|
D | tcp_minisocks.c | 516 newtp->snd_wnd = (ntohs(tcp_hdr(skb)->window) << in tcp_create_openreq_child() 518 newtp->max_window = newtp->snd_wnd; in tcp_create_openreq_child()
|
D | tcp_fastopen.c | 161 tp->snd_wnd = ntohs(tcp_hdr(skb)->window); in tcp_fastopen_create_child()
|
D | tcp_input.c | 3281 (ack_seq == tp->snd_wl1 && nwin > tp->snd_wnd); in tcp_may_update_window() 3325 if (tp->snd_wnd != nwin) { in tcp_ack_update_window() 3326 tp->snd_wnd = nwin; in tcp_ack_update_window() 5405 __tcp_fast_path_on(tp, tp->snd_wnd); in tcp_finish_connect() 5545 tp->snd_wnd = ntohs(th->window); in tcp_rcv_synsent_state_process() 5647 tp->snd_wnd = ntohs(th->window); in tcp_rcv_synsent_state_process() 5649 tp->max_window = tp->snd_wnd; in tcp_rcv_synsent_state_process() 5813 tp->snd_wnd = ntohs(th->window) << tp->rx_opt.snd_wscale; in tcp_rcv_state_process()
|
D | tcp_output.c | 1810 u32 chunk = min(tp->snd_wnd, tp->snd_cwnd * tp->mss_cache); in tcp_tso_should_defer() 1930 if (tp->snd_wnd < size_needed) in tcp_mtu_probe() 3102 tp->snd_wnd = 0; in tcp_connect_init()
|
/linux-4.1.27/drivers/infiniband/hw/nes/ |
D | nes_context.h | 57 __le32 snd_wnd; member
|
D | nes_cm.h | 273 u32 snd_wnd; member
|
D | nes_cm.c | 2265 cm_node->tcp_cntxt.snd_wnd = ntohs(tcph->window) << in handle_tcp_options() 2268 if (cm_node->tcp_cntxt.snd_wnd > cm_node->tcp_cntxt.max_snd_wnd) in handle_tcp_options() 2269 cm_node->tcp_cntxt.max_snd_wnd = cm_node->tcp_cntxt.snd_wnd; in handle_tcp_options() 2546 cm_node->tcp_cntxt.snd_wnd = in mini_cm_connect() 2548 loopbackremotenode->tcp_cntxt.snd_wnd = in mini_cm_connect() 2958 nesqp->nesqp_context->snd_wnd = cpu_to_le32(cm_node->tcp_cntxt.snd_wnd); in nes_cm_init_tsa_conn() 2979 nes_debug(NES_DBG_CM, " snd_wnd = 0x%08X.\n", le32_to_cpu(nesqp->nesqp_context->snd_wnd)); in nes_cm_init_tsa_conn()
|
/linux-4.1.27/include/linux/ |
D | tcp.h | 184 u32 snd_wnd; /* The window we expect to receive */ member
|
/linux-4.1.27/include/net/ |
D | tcp.h | 605 static inline void __tcp_fast_path_on(struct tcp_sock *tp, u32 snd_wnd) in __tcp_fast_path_on() argument 609 snd_wnd); in __tcp_fast_path_on() 614 __tcp_fast_path_on(tp, tp->snd_wnd >> tp->rx_opt.snd_wscale); in tcp_fast_path_on() 1019 return tp->snd_una + tp->snd_wnd; in tcp_wnd_end()
|