Home
last modified time | relevance | path

Searched refs:mss_cache (Results 1 – 5 of 5) sorted by relevance

/linux-4.4.14/net/ipv4/
Dtcp_westwood.c189 w->accounted += tp->mss_cache; in westwood_acked_count()
190 w->cumul_ack = tp->mss_cache; in westwood_acked_count()
193 if (w->cumul_ack > tp->mss_cache) { in westwood_acked_count()
197 w->cumul_ack = tp->mss_cache; in westwood_acked_count()
220 return max_t(u32, (w->bw_est * w->rtt_min) / tp->mss_cache, 2); in tcp_westwood_bw_rttmin()
Dtcp_output.c1402 tp->mss_cache = mss_now; in tcp_sync_mss()
1420 mss_now = tp->mss_cache; in tcp_current_mss()
1784 cong_win = (tp->snd_cwnd - in_flight) * tp->mss_cache; in tcp_tso_should_defer()
1789 if (limit >= max_segs * tp->mss_cache) in tcp_tso_should_defer()
1798 u32 chunk = min(tp->snd_wnd, tp->snd_cwnd * tp->mss_cache); in tcp_tso_should_defer()
1812 if (limit > tcp_max_tso_deferred_mss(tp) * tp->mss_cache) in tcp_tso_should_defer()
1899 size_needed = probe_size + (tp->reordering + 1) * tp->mss_cache; in tcp_mtu_probe()
Dtcp.c406 tp->mss_cache = TCP_MSS_DEFAULT; in tcp_init_sock()
1036 int tmp = tp->mss_cache; in select_size()
2674 info->tcpi_snd_mss = tp->mss_cache; in tcp_get_info()
2741 val = tp->mss_cache; in do_tcp_getsockopt()
Dtcp_input.c296 per_mss = max_t(u32, tp->rx_opt.mss_clamp, tp->mss_cache) + in tcp_sndbuf_expand()
472 unsigned int hint = min_t(unsigned int, tp->advmss, tp->mss_cache); in tcp_initialize_rcv_mss()
766 rate = (u64)tp->mss_cache * ((USEC_PER_SEC / 100) << 3); in tcp_update_pacing_rate()
2578 tcp_mss_to_mtu(sk, tp->mss_cache) / in tcp_mtup_probe_success()
/linux-4.4.14/include/linux/
Dtcp.h192 u32 mss_cache; /* Cached effective mss, not including SACKS */ member