From: "Gao Feng" <gfree.wind@foxmail.com>
To: "'Joe Perches'" <joe@perches.com>, <davem@davemloft.net>,
<kuznet@ms2.inr.ac.ru>, <jmorris@namei.org>,
<netdev@vger.kernel.org>
Cc: "'Gao Feng'" <fgao@ikuai8.com>
Subject: RE: [PATCH net-next v2 1/1] net: ipv4: Refine the ipv4_default_advmss
Date: Wed, 12 Apr 2017 12:13:42 +0800 [thread overview]
Message-ID: <000f01d2b343$2c603910$8520ab30$@foxmail.com> (raw)
In-Reply-To: <1491969444.17839.30.camel@perches.com>
> -----Original Message-----
> From: netdev-owner@vger.kernel.org [mailto:netdev-owner@vger.kernel.org]
> On Behalf Of Joe Perches
> Sent: Wednesday, April 12, 2017 11:57 AM
> To: gfree.wind@foxmail.com; davem@davemloft.net; kuznet@ms2.inr.ac.ru;
> jmorris@namei.org; netdev@vger.kernel.org
> Cc: Gao Feng <fgao@ikuai8.com>
> Subject: Re: [PATCH net-next v2 1/1] net: ipv4: Refine the
ipv4_default_advmss
>
> On Wed, 2017-04-12 at 10:32 +0800, gfree.wind@foxmail.com wrote:
> > diff --git a/net/ipv4/route.c b/net/ipv4/route.c
>
> more trivia:
>
> > @@ -1250,14 +1250,11 @@ static void set_class_tag(struct rtable *rt,
> > u32 tag)
> >
> > static unsigned int ipv4_default_advmss(const struct dst_entry *dst)
> > {
> > - unsigned int advmss = dst_metric_raw(dst, RTAX_ADVMSS);
> > + unsigned int header_size = sizeof(struct tcphdr) + sizeof(struct
iphdr);
> > + unsigned int advmss = max_t(unsigned int, dst->dev->mtu -
header_size,
> > + ip_rt_min_advmss);
> >
> > - if (advmss == 0) {
> > - advmss = max_t(unsigned int, dst->dev->mtu - 40,
> > - ip_rt_min_advmss);
> > - if (advmss > 65535 - 40)
> > - advmss = 65535 - 40;
> > - }
> > + advmss = min(advmss, IPV4_MAX_PMTU - header_size);
> > return advmss;
> > }
>
> This would probably be simpler to read as:
>
> return min(advmss, IPV4_MAX_PMTU - header_size);
>
> though it's almost certain that the compiler emits identical object code.
Yes. I thought about writing it with the way you mentioned, but gave up.
But i could follow you this time.
Best Regards
Feng
prev parent reply other threads:[~2017-04-12 4:14 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-12 2:32 [PATCH net-next v2 1/1] net: ipv4: Refine the ipv4_default_advmss gfree.wind
2017-04-12 3:57 ` Joe Perches
2017-04-12 4:13 ` Gao Feng [this message]
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='000f01d2b343$2c603910$8520ab30$@foxmail.com' \
--to=gfree.wind@foxmail.com \
--cc=davem@davemloft.net \
--cc=fgao@ikuai8.com \
--cc=jmorris@namei.org \
--cc=joe@perches.com \
--cc=kuznet@ms2.inr.ac.ru \
--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).