netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: David Miller <davem@davemloft.net>
To: jheffner@psc.edu
Cc: netdev@vger.kernel.org
Subject: Re: MTU probing bug?
Date: Tue, 25 Jul 2006 14:42:25 -0700 (PDT)	[thread overview]
Message-ID: <20060725.144225.67885911.davem@davemloft.net> (raw)
In-Reply-To: <44C62316.9080501@psc.edu>

From: John Heffner <jheffner@psc.edu>
Date: Tue, 25 Jul 2006 09:56:38 -0400

> 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.

Thanks for the clarification John.

I find it interesting that black hole detection is handled
different from a normal probe failure.  I guess here we are
dealing with a more significant failure, so we should start
at the thing which is most guarenteed to work.


  reply	other threads:[~2006-07-25 21:42 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
2006-07-25 21:42   ` David Miller [this message]
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=20060725.144225.67885911.davem@davemloft.net \
    --to=davem@davemloft.net \
    --cc=jheffner@psc.edu \
    --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).