Searched refs:snd_wnd (Results 1 - 11 of 11) sorted by relevance
/linux-4.4.14/net/ipv4/ |
H A D | tcp_probe.c | 69 u32 snd_wnd; member in struct:tcp_log 152 p->snd_wnd = tp->snd_wnd; jtcp_rcv_established() 198 p->snd_cwnd, p->ssthresh, p->snd_wnd, p->srtt, p->rcv_wnd); tcpprobe_sprint()
|
H A D | tcp_fastopen.c | 163 tp->snd_wnd = ntohs(tcp_hdr(skb)->window); tcp_fastopen_create_child()
|
H A D | tcp_timer.c | 74 (!tp->snd_wnd && !tp->packets_out)) tcp_out_of_resources() 384 if (!tp->snd_wnd && !sock_flag(sk, SOCK_DEAD) && tcp_retransmit_timer()
|
H A D | tcp_minisocks.c | 527 newtp->snd_wnd = (ntohs(tcp_hdr(skb)->window) << tcp_create_openreq_child() 529 newtp->max_window = newtp->snd_wnd; tcp_create_openreq_child()
|
H A D | tcp_input.c | 3325 (ack_seq == tp->snd_wl1 && nwin > tp->snd_wnd); tcp_may_update_window() 3369 if (tp->snd_wnd != nwin) { tcp_ack_update_window() 3370 tp->snd_wnd = nwin; tcp_ack_update_window() 5252 /* pred_flags is 0xS?10 << 16 + snd_wnd tcp_rcv_established() 5453 __tcp_fast_path_on(tp, tp->snd_wnd); tcp_finish_connect() 5593 tp->snd_wnd = ntohs(th->window); tcp_rcv_synsent_state_process() 5695 tp->snd_wnd = ntohs(th->window); tcp_rcv_synsent_state_process() 5697 tp->max_window = tp->snd_wnd; tcp_rcv_synsent_state_process() 5861 tp->snd_wnd = ntohs(th->window) << tp->rx_opt.snd_wscale; tcp_rcv_state_process()
|
H A D | tcp_output.c | 1798 u32 chunk = min(tp->snd_wnd, tp->snd_cwnd * tp->mss_cache); tcp_tso_should_defer() 1918 if (tp->snd_wnd < size_needed) tcp_mtu_probe() 3111 tp->snd_wnd = 0; tcp_connect_init()
|
/linux-4.4.14/drivers/infiniband/hw/nes/ |
H A D | nes_context.h | 57 __le32 snd_wnd; member in struct:nes_qp_context
|
H A D | nes_cm.h | 273 u32 snd_wnd; member in struct:nes_cm_tcp_context
|
H A D | nes_cm.c | 2268 cm_node->tcp_cntxt.snd_wnd = ntohs(tcph->window) << handle_tcp_options() 2271 if (cm_node->tcp_cntxt.snd_wnd > cm_node->tcp_cntxt.max_snd_wnd) handle_tcp_options() 2272 cm_node->tcp_cntxt.max_snd_wnd = cm_node->tcp_cntxt.snd_wnd; handle_tcp_options() 2549 cm_node->tcp_cntxt.snd_wnd = mini_cm_connect() 2551 loopbackremotenode->tcp_cntxt.snd_wnd = mini_cm_connect() 2964 nesqp->nesqp_context->snd_wnd = cpu_to_le32(cm_node->tcp_cntxt.snd_wnd); nes_cm_init_tsa_conn() 2985 nes_debug(NES_DBG_CM, " snd_wnd = 0x%08X.\n", le32_to_cpu(nesqp->nesqp_context->snd_wnd)); nes_cm_init_tsa_conn()
|
/linux-4.4.14/include/linux/ |
H A D | tcp.h | 140 * 0x5?10 << 16 + snd_wnd in net byte order 190 u32 snd_wnd; /* The window we expect to receive */ member in struct:tcp_sock
|
/linux-4.4.14/include/net/ |
H A D | tcp.h | 634 static inline void __tcp_fast_path_on(struct tcp_sock *tp, u32 snd_wnd) __tcp_fast_path_on() argument 638 snd_wnd); __tcp_fast_path_on() 643 __tcp_fast_path_on(tp, tp->snd_wnd >> tp->rx_opt.snd_wscale); tcp_fast_path_on() 1064 return tp->snd_una + tp->snd_wnd; tcp_wnd_end()
|
Completed in 275 milliseconds