Home
last modified time | relevance | path

Searched refs:snd_wnd (Results 1 – 20 of 20) sorted by relevance

/Linux-v4.19/include/trace/events/
Dtcp.h244 __field(__u32, snd_wnd)
269 __entry->snd_wnd = tp->snd_wnd;
279 __entry->snd_cwnd, __entry->ssthresh, __entry->snd_wnd,
/Linux-v4.19/include/linux/qed/
Dtcp_common.h130 __le32 snd_wnd; member
261 __le32 snd_wnd; member
Dqed_iscsi_if.h98 u32 snd_wnd; member
/Linux-v4.19/drivers/infiniband/hw/nes/
Dnes_context.h57 __le32 snd_wnd; member
Dnes_cm.h273 u32 snd_wnd; member
Dnes_cm.c2128 cm_node->tcp_cntxt.snd_wnd = ntohs(tcph->window) << in handle_tcp_options()
2131 if (cm_node->tcp_cntxt.snd_wnd > cm_node->tcp_cntxt.max_snd_wnd) in handle_tcp_options()
2132 cm_node->tcp_cntxt.max_snd_wnd = cm_node->tcp_cntxt.snd_wnd; in handle_tcp_options()
2386 cm_node->tcp_cntxt.snd_wnd = in mini_cm_connect()
2388 loopbackremotenode->tcp_cntxt.snd_wnd = in mini_cm_connect()
2804 nesqp->nesqp_context->snd_wnd = cpu_to_le32(cm_node->tcp_cntxt.snd_wnd); in nes_cm_init_tsa_conn()
2825 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-v4.19/net/ipv4/
Dtcp_fastopen.c249 tp->snd_wnd = ntohs(tcp_hdr(skb)->window); in tcp_fastopen_create_child()
250 tp->max_window = tp->snd_wnd; in tcp_fastopen_create_child()
Dtcp_timer.c114 (!tp->snd_wnd && !tp->packets_out)) in tcp_out_of_resources()
451 if (!tp->snd_wnd && !sock_flag(sk, SOCK_DEAD) && in tcp_retransmit_timer()
Dtcp_minisocks.c536 newtp->snd_wnd = ntohs(tcp_hdr(skb)->window) << newtp->rx_opt.snd_wscale; in tcp_create_openreq_child()
537 newtp->max_window = newtp->snd_wnd; in tcp_create_openreq_child()
Dtcp.c2637 if (opt.max_window < opt.snd_wnd) in tcp_repair_set_window()
2647 tp->snd_wnd = opt.snd_wnd; in tcp_repair_set_window()
3468 opt.snd_wnd = tp->snd_wnd; in do_tcp_getsockopt()
Dtcp_input.c3338 (ack_seq == tp->snd_wl1 && nwin > tp->snd_wnd); in tcp_may_update_window()
3380 if (tp->snd_wnd != nwin) { in tcp_ack_update_window()
3381 tp->snd_wnd = nwin; in tcp_ack_update_window()
5680 __tcp_fast_path_on(tp, tp->snd_wnd); in tcp_finish_connect()
5834 tp->snd_wnd = ntohs(th->window); in tcp_rcv_synsent_state_process()
5938 tp->snd_wnd = ntohs(th->window); in tcp_rcv_synsent_state_process()
5940 tp->max_window = tp->snd_wnd; in tcp_rcv_synsent_state_process()
6108 tp->snd_wnd = ntohs(th->window) << tp->rx_opt.snd_wscale; in tcp_rcv_state_process()
Dtcp_output.c1947 u32 chunk = min(tp->snd_wnd, tp->snd_cwnd * tp->mss_cache); in tcp_tso_should_defer()
2087 if (tp->snd_wnd < size_needed) in tcp_mtu_probe()
3333 tp->snd_wnd = 0; in tcp_connect_init()
/Linux-v4.19/include/uapi/linux/
Dtcp.h141 __u32 snd_wnd; member
/Linux-v4.19/drivers/net/ethernet/qlogic/qed/
Dqed_iscsi.c102 u32 snd_wnd; member
387 p_tcp->snd_wnd = cpu_to_le32(p_conn->snd_wnd); in qed_sp_iscsi_conn_offload()
1292 con->snd_wnd = conn_info->snd_wnd; in qed_iscsi_offload_conn()
/Linux-v4.19/drivers/infiniband/hw/i40iw/
Di40iw_cm.h272 u32 snd_wnd; member
Di40iw_cm.c721 cm_node->tcp_cntxt.snd_wnd = ntohs(tcph->window) << in i40iw_handle_tcp_options()
724 if (cm_node->tcp_cntxt.snd_wnd > cm_node->tcp_cntxt.max_snd_wnd) in i40iw_handle_tcp_options()
725 cm_node->tcp_cntxt.max_snd_wnd = cm_node->tcp_cntxt.snd_wnd; in i40iw_handle_tcp_options()
2992 cm_node->tcp_cntxt.snd_wnd = loopback_remotenode->tcp_cntxt.rcv_wnd; in i40iw_create_cm_node()
2993 loopback_remotenode->tcp_cntxt.snd_wnd = cm_node->tcp_cntxt.rcv_wnd; in i40iw_create_cm_node()
3312 tcp_info->snd_wnd = cpu_to_le32(cm_node->tcp_cntxt.snd_wnd); in i40iw_init_tcp_ctx()
Di40iw_type.h718 u32 snd_wnd; member
Di40iw_ctrl.c2885 LS_64(tcp->snd_wnd, I40IWQPC_SNDWND)); in i40iw_sc_qp_setctx()
/Linux-v4.19/include/linux/
Dtcp.h206 u32 snd_wnd; /* The window we expect to receive */ member
/Linux-v4.19/include/net/
Dtcp.h649 static inline void __tcp_fast_path_on(struct tcp_sock *tp, u32 snd_wnd) in __tcp_fast_path_on() argument
653 snd_wnd); in __tcp_fast_path_on()
658 __tcp_fast_path_on(tp, tp->snd_wnd >> tp->rx_opt.snd_wscale); in tcp_fast_path_on()
1199 return tp->snd_una + tp->snd_wnd; in tcp_wnd_end()