Home
last modified time | relevance | path

Searched refs:max_window (Results 1 – 15 of 15) sorted by relevance

/linux-6.12.1/net/rose/
Dsysctl_net_rose.c20 static int min_window[] = {1}, max_window[] = {7}; variable
113 .extra2 = &max_window
/linux-6.12.1/net/netrom/
Dsysctl_net_netrom.c25 static int min_window[] = {1}, max_window[] = {127}; variable
105 .extra2 = &max_window
/linux-6.12.1/net/ax25/
Dsysctl_net_ax25.c16 static int min_window[] = {1}, max_window[] = {7}; variable
68 .extra2 = &max_window
/linux-6.12.1/drivers/mmc/host/
Dsdhci-omap.c324 u32 start_window = 0, max_window = 0; in sdhci_omap_execute_tuning() local
394 max_window = start_window; in sdhci_omap_execute_tuning()
413 phase_delay = min(max_window + 4 * (max_len - 1) - 24, in sdhci_omap_execute_tuning()
414 max_window + in sdhci_omap_execute_tuning()
417 phase_delay = max_window + DIV_ROUND_UP(9 * max_len, 16) * 4; in sdhci_omap_execute_tuning()
419 phase_delay = max_window + DIV_ROUND_UP(8 * max_len, 16) * 4; in sdhci_omap_execute_tuning()
421 phase_delay = max_window + DIV_ROUND_UP(7 * max_len, 16) * 4; in sdhci_omap_execute_tuning()
423 phase_delay = max_window + DIV_ROUND_UP(5 * max_len, 16) * 4; in sdhci_omap_execute_tuning()
425 phase_delay = max_window + DIV_ROUND_UP(4 * max_len, 16) * 4; in sdhci_omap_execute_tuning()
427 phase_delay = max_window + DIV_ROUND_UP(3 * max_len, 16) * 4; in sdhci_omap_execute_tuning()
/linux-6.12.1/tools/include/uapi/linux/
Dtcp.h145 __u32 max_window; member
/linux-6.12.1/include/uapi/linux/
Dtcp.h152 __u32 max_window; member
/linux-6.12.1/Documentation/networking/net_cachelines/
Dtcp_sock.rst37 u32 max_window read_mostly - tcp_b…
/linux-6.12.1/include/linux/
Dtcp.h204 u32 max_window; /* Maximal window ever seen from peer */ member
/linux-6.12.1/net/ipv4/
Dtcp.c672 return after(tp->write_seq, tp->pushed_seq + (tp->max_window >> 1)); in forced_push()
3319 seq = tp->write_seq + tp->max_window + 2; in tcp_disconnect()
3425 if (opt.max_window < opt.snd_wnd) in tcp_repair_set_window()
3436 tp->max_window = opt.max_window; in tcp_repair_set_window()
4468 opt.max_window = tp->max_window; in do_tcp_getsockopt()
4961 CACHELINE_ASSERT_GROUP_MEMBER(struct tcp_sock, tcp_sock_read_tx, max_window); in tcp_struct_check()
Dtcp_input.c1040 if (seq_len > tp->max_window) in tcp_dsack_seen()
1287 return !before(start_seq, end_seq - tp->max_window); in tcp_is_sackblock_valid()
1879 if (before(TCP_SKB_CB(ack_skb)->ack_seq, prior_snd_una - tp->max_window)) in tcp_sacktag_write_queue()
3716 if (nwin > tp->max_window) { in tcp_ack_update_window()
3717 tp->max_window = nwin; in tcp_ack_update_window()
3932 u32 max_window; in tcp_ack() local
3935 max_window = min_t(u64, tp->max_window, tp->bytes_acked); in tcp_ack()
3937 if (before(ack, prior_snd_una - max_window)) { in tcp_ack()
6633 tp->max_window = tp->snd_wnd; in tcp_rcv_synsent_state_process()
Dtcp_fastopen.c270 tp->max_window = tp->snd_wnd; in tcp_fastopen_create_child()
Dtcp_minisocks.c577 newtp->max_window = newtp->snd_wnd; in tcp_create_openreq_child()
Dtcp_output.c3894 tp->max_window = 0; in tcp_connect_init()
/linux-6.12.1/include/net/
Dtcp.h715 if (tp->max_window > TCP_MSS_DEFAULT) in tcp_bound_to_half_wnd()
716 cutoff = (tp->max_window >> 1); in tcp_bound_to_half_wnd()
718 cutoff = tp->max_window; in tcp_bound_to_half_wnd()
/linux-6.12.1/drivers/net/ethernet/chelsio/inline_crypto/chtls/
Dchtls_cm.c465 tp->max_window = 0xFFFF << (tp->rx_opt.snd_wscale); in chtls_disconnect()