Searched refs:snd_wnd (Results 1 – 11 of 11) sorted by relevance
/linux-4.4.14/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 | 527 newtp->snd_wnd = (ntohs(tcp_hdr(skb)->window) << in tcp_create_openreq_child() 529 newtp->max_window = newtp->snd_wnd; in tcp_create_openreq_child()
|
D | tcp_fastopen.c | 163 tp->snd_wnd = ntohs(tcp_hdr(skb)->window); in tcp_fastopen_create_child()
|
D | tcp_input.c | 3325 (ack_seq == tp->snd_wl1 && nwin > tp->snd_wnd); in tcp_may_update_window() 3369 if (tp->snd_wnd != nwin) { in tcp_ack_update_window() 3370 tp->snd_wnd = nwin; in tcp_ack_update_window() 5453 __tcp_fast_path_on(tp, tp->snd_wnd); in tcp_finish_connect() 5593 tp->snd_wnd = ntohs(th->window); in tcp_rcv_synsent_state_process() 5695 tp->snd_wnd = ntohs(th->window); in tcp_rcv_synsent_state_process() 5697 tp->max_window = tp->snd_wnd; in tcp_rcv_synsent_state_process() 5861 tp->snd_wnd = ntohs(th->window) << tp->rx_opt.snd_wscale; in tcp_rcv_state_process()
|
D | tcp_output.c | 1798 u32 chunk = min(tp->snd_wnd, tp->snd_cwnd * tp->mss_cache); in tcp_tso_should_defer() 1918 if (tp->snd_wnd < size_needed) in tcp_mtu_probe() 3111 tp->snd_wnd = 0; in tcp_connect_init()
|
/linux-4.4.14/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 | 2268 cm_node->tcp_cntxt.snd_wnd = ntohs(tcph->window) << in handle_tcp_options() 2271 if (cm_node->tcp_cntxt.snd_wnd > cm_node->tcp_cntxt.max_snd_wnd) in handle_tcp_options() 2272 cm_node->tcp_cntxt.max_snd_wnd = cm_node->tcp_cntxt.snd_wnd; in handle_tcp_options() 2549 cm_node->tcp_cntxt.snd_wnd = in mini_cm_connect() 2551 loopbackremotenode->tcp_cntxt.snd_wnd = in mini_cm_connect() 2964 nesqp->nesqp_context->snd_wnd = cpu_to_le32(cm_node->tcp_cntxt.snd_wnd); in nes_cm_init_tsa_conn() 2985 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.4.14/include/linux/ |
D | tcp.h | 190 u32 snd_wnd; /* The window we expect to receive */ member
|
/linux-4.4.14/include/net/ |
D | tcp.h | 634 static inline void __tcp_fast_path_on(struct tcp_sock *tp, u32 snd_wnd) in __tcp_fast_path_on() argument 638 snd_wnd); in __tcp_fast_path_on() 643 __tcp_fast_path_on(tp, tp->snd_wnd >> tp->rx_opt.snd_wscale); in tcp_fast_path_on() 1064 return tp->snd_una + tp->snd_wnd; in tcp_wnd_end()
|