diff options
author | Joe Perches <joe@perches.com> | 2017-08-11 13:26:26 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-08-11 23:52:47 +0200 |
commit | 0ed80da518a1f27562a013f106505e495e891fe4 (patch) | |
tree | 22e0039a1df28cd8317dfbf2bd4b0b58dbca95a2 /net/openvswitch/flow_netlink.c | |
parent | nfp: send control message when MAC representors are created (diff) | |
download | linux-0ed80da518a1f27562a013f106505e495e891fe4.tar.xz linux-0ed80da518a1f27562a013f106505e495e891fe4.zip |
openvswitch: Remove unnecessary newlines from OVS_NLERR uses
OVS_NLERR already adds a newline so these just add blank
lines to the logging.
Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Joe Stringer <joe@ovn.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch/flow_netlink.c')
-rw-r--r-- | net/openvswitch/flow_netlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/openvswitch/flow_netlink.c b/net/openvswitch/flow_netlink.c index f07d10ac35d8..e8eb427ce6d1 100644 --- a/net/openvswitch/flow_netlink.c +++ b/net/openvswitch/flow_netlink.c @@ -1255,7 +1255,7 @@ static int ovs_key_from_nlattrs(struct net *net, struct sw_flow_match *match, } if (!is_mask && ipv6_key->ipv6_label & htonl(0xFFF00000)) { - OVS_NLERR(log, "IPv6 flow label %x is out of range (max=%x).\n", + OVS_NLERR(log, "IPv6 flow label %x is out of range (max=%x)", ntohl(ipv6_key->ipv6_label), (1 << 20) - 1); return -EINVAL; } |