Message ID | 20220209065415.7068-1-gal@nvidia.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 25a9c4fa81c68de054dbfca6644f60748e7d87a2 |
Delegated to: | Stephen Hemminger |
Headers | show |
Series | [iproute2-next] tunnel: Fix missing space after local/remote print | expand |
Context | Check | Description |
---|---|---|
netdev/tree_selection | success | Not a local patch |
Hello: This patch was applied to iproute2/iproute2-next.git (main) by David Ahern <dsahern@kernel.org>: On Wed, 9 Feb 2022 08:54:15 +0200 you wrote: > The cited commit removed the space after the local/remote tunnel print > and resulted in "broken" output: > > gre remote 1.1.1.2local 1.1.1.1ttl inherit erspan_ver 0 addrgenmode eui64 numtxqueues 1 numrxqueues 1 gso_max_size 65536 gso_max_segs 65535 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^ > > Fixes: 5632cf69ad59 ("tunnel: fix clang warning") > Signed-off-by: Gal Pressman <gal@nvidia.com> > > [...] Here is the summary with links: - [iproute2-next] tunnel: Fix missing space after local/remote print https://git.kernel.org/pub/scm/network/iproute2/iproute2-next.git/commit/?id=25a9c4fa81c6 You are awesome, thank you!
diff --git a/ip/tunnel.c b/ip/tunnel.c index f2632f43babf..224c81e42e9b 100644 --- a/ip/tunnel.c +++ b/ip/tunnel.c @@ -299,6 +299,7 @@ void tnl_print_endpoint(const char *name, const struct rtattr *rta, int family) } print_string_name_value(name, value); + print_string(PRINT_FP, NULL, " ", NULL); } void tnl_print_gre_flags(__u8 proto,
The cited commit removed the space after the local/remote tunnel print and resulted in "broken" output: gre remote 1.1.1.2local 1.1.1.1ttl inherit erspan_ver 0 addrgenmode eui64 numtxqueues 1 numrxqueues 1 gso_max_size 65536 gso_max_segs 65535 ^^^^^^^^^^^^^^^^^^^^^^^^^^^ Fixes: 5632cf69ad59 ("tunnel: fix clang warning") Signed-off-by: Gal Pressman <gal@nvidia.com> --- v1->v2: https://lore.kernel.org/netdev/20220208144005.32401-1-gal@nvidia.com/ * Remove unneeded is_json_context() --- ip/tunnel.c | 1 + 1 file changed, 1 insertion(+)