diff options
author | David Ahern <dsa@cumulusnetworks.com> | 2017-02-02 12:37:12 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-02-04 19:58:14 -0500 |
commit | 7d4d5065ecb0cea9c5815d5e0df5fb586c5ee9b5 (patch) | |
tree | 5e2e9be5223153c8b367c66ad4d01ae821591a9c /net | |
parent | 16a16cd35ee29d9bea54dd60e55d9c1cc685a37d (diff) | |
download | linux-7d4d5065ecb0cea9c5815d5e0df5fb586c5ee9b5.tar.gz linux-7d4d5065ecb0cea9c5815d5e0df5fb586c5ee9b5.tar.bz2 linux-7d4d5065ecb0cea9c5815d5e0df5fb586c5ee9b5.zip |
net: ipv6: Use compressed IPv6 addresses showing route replace error
ip6_print_replace_route_err logs an error if a route replace fails with
IPv6 addresses in the full format. e.g,:
IPv6: IPV6: multipath route replace failed (check consistency of installed routes): 2001:0db8:0200:0000:0000:0000:0000:0000 nexthop 2001:0db8:0001:0000:0000:0000:0000:0016 ifi 0
Change the message to dump the addresses in the compressed format.
Signed-off-by: David Ahern <dsa@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv6/route.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/route.c b/net/ipv6/route.c index 194261acb87d..8ffa24cc8899 100644 --- a/net/ipv6/route.c +++ b/net/ipv6/route.c @@ -3010,7 +3010,7 @@ static void ip6_print_replace_route_err(struct list_head *rt6_nh_list) struct rt6_nh *nh; list_for_each_entry(nh, rt6_nh_list, next) { - pr_warn("IPV6: multipath route replace failed (check consistency of installed routes): %pI6 nexthop %pI6 ifi %d\n", + pr_warn("IPV6: multipath route replace failed (check consistency of installed routes): %pI6c nexthop %pI6c ifi %d\n", &nh->r_cfg.fc_dst, &nh->r_cfg.fc_gateway, nh->r_cfg.fc_ifindex); } |