| /OK3568_Linux_fs/kernel/net/rose/ |
| H A D | sysctl_net_rose.c | 20 static int min_window[] = {1}, max_window[] = {7}; variable 113 .extra2 = &max_window
|
| /OK3568_Linux_fs/kernel/net/netrom/ |
| H A D | sysctl_net_netrom.c | 25 static int min_window[] = {1}, max_window[] = {127}; variable 105 .extra2 = &max_window
|
| /OK3568_Linux_fs/kernel/drivers/mmc/host/ |
| H A D | sdhci-omap.c | 297 u32 start_window = 0, max_window = 0; in sdhci_omap_execute_tuning() local 367 max_window = start_window; in sdhci_omap_execute_tuning() 386 phase_delay = min(max_window + 4 * (max_len - 1) - 24, in sdhci_omap_execute_tuning() 387 max_window + in sdhci_omap_execute_tuning() 390 phase_delay = max_window + DIV_ROUND_UP(9 * max_len, 16) * 4; in sdhci_omap_execute_tuning() 392 phase_delay = max_window + DIV_ROUND_UP(8 * max_len, 16) * 4; in sdhci_omap_execute_tuning() 394 phase_delay = max_window + DIV_ROUND_UP(7 * max_len, 16) * 4; in sdhci_omap_execute_tuning() 396 phase_delay = max_window + DIV_ROUND_UP(5 * max_len, 16) * 4; in sdhci_omap_execute_tuning() 398 phase_delay = max_window + DIV_ROUND_UP(4 * max_len, 16) * 4; in sdhci_omap_execute_tuning() 400 phase_delay = max_window + DIV_ROUND_UP(3 * max_len, 16) * 4; in sdhci_omap_execute_tuning()
|
| /OK3568_Linux_fs/kernel/net/ax25/ |
| H A D | sysctl_net_ax25.c | 16 static int min_window[] = {1}, max_window[] = {7}; variable 68 .extra2 = &max_window
|
| /OK3568_Linux_fs/kernel/include/net/ |
| H A D | dn.h | 96 unsigned long max_window; member
|
| H A D | tcp.h | 644 if (tp->max_window > TCP_MSS_DEFAULT) in tcp_bound_to_half_wnd() 645 cutoff = (tp->max_window >> 1); in tcp_bound_to_half_wnd() 647 cutoff = tp->max_window; in tcp_bound_to_half_wnd()
|
| /OK3568_Linux_fs/kernel/include/uapi/linux/ |
| H A D | tcp.h | 145 __u32 max_window; member
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/netinet/ |
| H A D | tcp.h | 334 uint32_t max_window; member
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/netinet/ |
| H A D | tcp.h | 334 uint32_t max_window; member
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/ |
| H A D | tcp.h | 142 __u32 max_window; member
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/ |
| H A D | tcp.h | 142 __u32 max_window; member
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | tcp.h | 207 u32 max_window; /* Maximal window ever seen from peer */ member
|
| /OK3568_Linux_fs/kernel/net/decnet/ |
| H A D | af_decnet.c | 514 scp->max_window = NSP_MAX_WINDOW; in dn_alloc_sock() 1116 DN_SK(newsk)->max_window = decnet_no_fc_max_cwnd; in dn_accept() 1451 scp->max_window = u.win; in __dn_setsockopt() 1592 r_data = &scp->max_window; in __dn_getsockopt()
|
| H A D | dn_nsp_out.c | 422 if (scp->snd_window < scp->max_window) in dn_nsp_check_xmit_queue()
|
| H A D | dn_nsp_in.c | 360 scp->max_window = decnet_no_fc_max_cwnd; in dn_nsp_conn_conf()
|
| /OK3568_Linux_fs/kernel/net/ipv4/ |
| H A D | tcp.c | 661 return after(tp->write_seq, tp->pushed_seq + (tp->max_window >> 1)); in forced_push() 2764 seq = tp->write_seq + tp->max_window + 2; in tcp_disconnect() 2869 if (opt.max_window < opt.snd_wnd) in tcp_repair_set_window() 2880 tp->max_window = opt.max_window; in tcp_repair_set_window() 3834 opt.max_window = tp->max_window; in do_tcp_getsockopt()
|
| H A D | tcp_fastopen.c | 286 tp->max_window = tp->snd_wnd; in tcp_fastopen_create_child()
|
| H A D | tcp_minisocks.c | 523 newtp->max_window = newtp->snd_wnd; in tcp_create_openreq_child()
|
| H A D | tcp_input.c | 992 if (seq_len > tp->max_window) in tcp_dsack_seen() 1230 return !before(start_seq, end_seq - tp->max_window); in tcp_is_sackblock_valid() 1822 if (before(TCP_SKB_CB(ack_skb)->ack_seq, prior_snd_una - tp->max_window)) in tcp_sacktag_write_queue() 3549 if (nwin > tp->max_window) { in tcp_ack_update_window() 3550 tp->max_window = nwin; in tcp_ack_update_window() 3758 if (before(ack, prior_snd_una - tp->max_window)) { in tcp_ack() 6292 tp->max_window = tp->snd_wnd; in tcp_rcv_synsent_state_process()
|
| H A D | tcp_output.c | 3674 tp->max_window = 0; in tcp_connect_init()
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/chelsio/inline_crypto/chtls/ |
| H A D | chtls_cm.c | 465 tp->max_window = 0xFFFF << (tp->rx_opt.snd_wscale); in chtls_disconnect()
|