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>
This commit is contained in:
committed by
David S. Miller
parent
57ea85069c
commit
c75a33c84b
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -203,7 +203,7 @@ int br_stp_set_enabled(struct net_bridge *br, unsigned long val,
|
||||
|
||||
if (br_mrp_enabled(br)) {
|
||||
NL_SET_ERR_MSG_MOD(extack,
|
||||
"STP can't be enabled if MRP is already enabled\n");
|
||||
"STP can't be enabled if MRP is already enabled");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user