From: John Heffner <jheffner@psc.edu>
To: David Miller <davem@davemloft.net>
Cc: netdev@vger.kernel.org
Subject: Re: MTU probing bug?
Date: Tue, 25 Jul 2006 09:56:38 -0400 [thread overview]
Message-ID: <44C62316.9080501@psc.edu> (raw)
In-Reply-To: <20060725.001744.26930215.davem@davemloft.net>
David Miller wrote:
> John, have a look at this code in tcp_write_timeout():
>
> mss = min(sysctl_tcp_base_mss,
> tcp_mtu_to_mss(sk, icsk->icsk_mtup.search_low)/2);
> mss = max(mss, 68 - tp->tcp_header_len);
>
> That first line looks like it should be a max() instead
> of a min().
>
> tcp_base_mss is the smallest MSS we should use, therefore
> we should make sure the "mss" is at least that large.
>
> It's also possible that I misread the intention of this code :) From
> what I read, it is trying to half the MSS in use and adjust the MTU
> search low point to be based upon this new value.
No, the min() is what's intended here. The base_mss is where you want
to start searching from. So, on black hole detection, you drop
immediatly down to the base. The base is configurable, because making
it higher can make searching faster. If it's still too high for some
links, you halve it again on successive timeouts.
-John
next prev parent reply other threads:[~2006-07-25 13:56 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-07-25 7:17 MTU probing bug? David Miller
2006-07-25 13:56 ` John Heffner [this message]
2006-07-25 21:42 ` David Miller
2006-07-26 1:53 ` John Heffner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=44C62316.9080501@psc.edu \
--to=jheffner@psc.edu \
--cc=davem@davemloft.net \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).