Re: [PATCH net] ipv6: route: remove duplicated string from error message

2019-01-14 Thread Jakub Kicinski
On Sun, 13 Jan 2019 09:08:56 -0700, David Ahern wrote: > On 1/12/19 2:07 PM, Joe Perches wrote: > > On Sat, 2019-01-12 at 12:45 -0800, Jakub Kicinski wrote: > >> "IPv6: " prefix is already added by pr_fmt, no need to include > >> it again in the pr_warn() format. > > [] > >> diff --git a/net/

Re: [PATCH net] ipv6: route: remove duplicated string from error message

2019-01-13 Thread David Ahern
On 1/12/19 2:07 PM, Joe Perches wrote: > On Sat, 2019-01-12 at 12:45 -0800, Jakub Kicinski wrote: >> "IPv6: " prefix is already added by pr_fmt, no need to include >> it again in the pr_warn() format. > [] >> diff --git a/net/ipv6/route.c b/net/ipv6/route.c > [] >> @@ -4256,7 +4256,7 @@ static void

Re: [PATCH net] ipv6: route: remove duplicated string from error message

2019-01-12 Thread Joe Perches
On Sat, 2019-01-12 at 12:45 -0800, Jakub Kicinski wrote: > "IPv6: " prefix is already added by pr_fmt, no need to include > it again in the pr_warn() format. [] > diff --git a/net/ipv6/route.c b/net/ipv6/route.c [] > @@ -4256,7 +4256,7 @@ static void ip6_print_replace_route_err(struct > list_head

[PATCH net] ipv6: route: remove duplicated string from error message

2019-01-12 Thread Jakub Kicinski
"IPv6: " prefix is already added by pr_fmt, no need to include it again in the pr_warn() format. Signed-off-by: Jakub Kicinski --- net/ipv6/route.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/ipv6/route.c b/net/ipv6/route.c index 49117a72fcad..06708f0070cf 100644 ---