diff options
author | Jacob Keller <jacob.e.keller@intel.com> | 2020-05-07 03:58:27 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-05-08 03:56:14 +0300 |
commit | c75a33c84b83ffbb8b8b58a6bf4dea69dba21326 (patch) | |
tree | 6d40ec96ba57913618c4fd0553fa37873361d55a /net/bridge/br_mrp_netlink.c | |
parent | 57ea85069cc5da0e8b8418f901cae706f92774fb (diff) | |
download | linux-c75a33c84b83ffbb8b8b58a6bf4dea69dba21326.tar.xz |
net: remove newlines in NL_SET_ERR_MSG_MOD
The NL_SET_ERR_MSG_MOD macro is used to report a string describing an
error message to userspace via the netlink extended ACK structure. It
should not have a trailing newline.
Add a cocci script which catches cases where the newline marker is
present. Using this script, fix the handful of cases which accidentally
included a trailing new line.
I couldn't figure out a way to get a patch mode working, so this script
only implements context, report, and org.
Signed-off-by: Jacob Keller <jacob.e.keller@intel.com>
Cc: Jakub Kicinski <kuba@kernel.org>
Cc: Andy Whitcroft <apw@canonical.com>
Cc: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge/br_mrp_netlink.c')
-rw-r--r-- | net/bridge/br_mrp_netlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bridge/br_mrp_netlink.c b/net/bridge/br_mrp_netlink.c index 503896638be0..397e7f710772 100644 --- a/net/bridge/br_mrp_netlink.c +++ b/net/bridge/br_mrp_netlink.c @@ -28,7 +28,7 @@ int br_mrp_parse(struct net_bridge *br, struct net_bridge_port *p, int err; if (br->stp_enabled != BR_NO_STP) { - NL_SET_ERR_MSG_MOD(extack, "MRP can't be enabled if STP is already enabled\n"); + NL_SET_ERR_MSG_MOD(extack, "MRP can't be enabled if STP is already enabled"); return -EINVAL; } |