From: Eric Dumazet <eric.dumazet@gmail.com>
To: Alessandro Suardi <alessandro.suardi@gmail.com>,
David Miller <davem@davemloft.net>
Cc: linux-kernel@vger.kernel.org, netdev <netdev@vger.kernel.org>
Subject: [PATCH] ipv4: fix fib metrics
Date: Thu, 24 Mar 2011 18:01:24 +0100 [thread overview]
Message-ID: <1300986084.3747.101.camel@edumazet-laptop> (raw)
In-Reply-To: <1300983340.3747.44.camel@edumazet-laptop>
Le jeudi 24 mars 2011 à 17:15 +0100, Eric Dumazet a écrit :
> I am testing following patch :
>
> diff --git a/net/ipv4/fib_semantics.c b/net/ipv4/fib_semantics.c
> index 622ac4c..654ef5b 100644
> --- a/net/ipv4/fib_semantics.c
> +++ b/net/ipv4/fib_semantics.c
> @@ -251,7 +251,7 @@ static struct fib_info *fib_find_info(const struct fib_info *nfi)
> nfi->fib_prefsrc == fi->fib_prefsrc &&
> nfi->fib_priority == fi->fib_priority &&
> memcmp(nfi->fib_metrics, fi->fib_metrics,
> - sizeof(fi->fib_metrics)) == 0 &&
> + sizeof(u32) * RTAX_MAX) == 0 &&
> ((nfi->fib_flags ^ fi->fib_flags) & ~RTNH_F_DEAD) == 0 &&
> (nfi->fib_nhs == 0 || nh_comp(fi, nfi) == 0))
> return fi;
>
>
This works. Here is the formal submission :
Thanks !
[PATCH] ipv4: fix fib metrics
Alessandro Suardi reported that we could not change route metrics :
ip ro change default .... advmss 1400
This regression came with commit 9c150e82ac50 (Allocate fib metrics
dynamically). fib_metrics is no longer an array, but a pointer to an
array.
Reported-by: Alessandro Suardi <alessandro.suardi@gmail.com>
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
---
net/ipv4/fib_semantics.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/ipv4/fib_semantics.c b/net/ipv4/fib_semantics.c
index 622ac4c..75b9fb5 100644
--- a/net/ipv4/fib_semantics.c
+++ b/net/ipv4/fib_semantics.c
@@ -251,7 +251,7 @@ static struct fib_info *fib_find_info(const struct fib_info *nfi)
nfi->fib_prefsrc == fi->fib_prefsrc &&
nfi->fib_priority == fi->fib_priority &&
memcmp(nfi->fib_metrics, fi->fib_metrics,
- sizeof(fi->fib_metrics)) == 0 &&
+ sizeof(u32) * RTAX_MAX) == 0 &&
((nfi->fib_flags ^ fi->fib_flags) & ~RTNH_F_DEAD) == 0 &&
(nfi->fib_nhs == 0 || nh_comp(fi, nfi) == 0))
return fi;
next prev parent reply other threads:[~2011-03-24 17:01 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-03-24 15:08 regression: ip r change mss doesn't work in 2.6.38-git14 Alessandro Suardi
2011-03-24 15:21 ` Eric Dumazet
2011-03-24 15:52 ` Alessandro Suardi
2011-03-24 16:15 ` Eric Dumazet
2011-03-24 17:01 ` Eric Dumazet [this message]
2011-03-24 18:14 ` [PATCH] ipv4: fix fib metrics Alessandro Suardi
2011-03-24 18:45 ` Eric Dumazet
2011-03-24 22:11 ` Alessandro Suardi
2011-03-24 22:18 ` Eric Dumazet
2011-03-24 22:27 ` Alessandro Suardi
2011-03-24 22:32 ` Eric Dumazet
2011-03-24 22:36 ` David Miller
2011-03-24 22:44 ` Eric Dumazet
2011-03-25 0:12 ` Alessandro Suardi
2011-03-25 0:22 ` David Miller
2011-03-25 0:53 ` Kyle Moffett
2011-03-25 1:04 ` Alessandro Suardi
2011-03-25 1:25 ` Alessandro Suardi
2011-05-27 9:27 ` David Woodhouse
2011-05-28 22:00 ` Alessandro Suardi
2011-03-24 18:59 ` David Miller
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=1300986084.3747.101.camel@edumazet-laptop \
--to=eric.dumazet@gmail.com \
--cc=alessandro.suardi@gmail.com \
--cc=davem@davemloft.net \
--cc=linux-kernel@vger.kernel.org \
--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