summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZhengchao Shao <shaozhengchao@huawei.com>2023-11-23 09:55:15 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2024-02-05 20:13:03 +0000
commit2386ee6cba10a74c2a0a12f3c18bd58c4ce1fe24 (patch)
treec37ed5441cd37c2832ffc8e59fc371ec3b6d64bd
parente1edd8e6c0613e0a939f709cebda5e286a53caee (diff)
downloadlinux-stable-2386ee6cba10a74c2a0a12f3c18bd58c4ce1fe24.tar.gz
linux-stable-2386ee6cba10a74c2a0a12f3c18bd58c4ce1fe24.tar.bz2
linux-stable-2386ee6cba10a74c2a0a12f3c18bd58c4ce1fe24.zip
bonding: remove print in bond_verify_device_path
commit 486058f42a4728053ae69ebbf78e9731d8ce6f8b upstream. As suggested by Paolo in link[1], if the memory allocation fails, the mm layer will emit a lot warning comprising the backtrace, so remove the print. [1] https://lore.kernel.org/all/20231118081653.1481260-1-shaozhengchao@huawei.com/ Suggested-by: Paolo Abeni <pabeni@redhat.com> Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com> Reviewed-by: Hangbin Liu <liuhangbin@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/net/bonding/bond_main.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
index 2b333a62ba81..710734a5af9b 100644
--- a/drivers/net/bonding/bond_main.c
+++ b/drivers/net/bonding/bond_main.c
@@ -2943,11 +2943,8 @@ struct bond_vlan_tag *bond_verify_device_path(struct net_device *start_dev,
if (start_dev == end_dev) {
tags = kcalloc(level + 1, sizeof(*tags), GFP_ATOMIC);
- if (!tags) {
- net_err_ratelimited("%s: %s: Failed to allocate tags\n",
- __func__, start_dev->name);
+ if (!tags)
return ERR_PTR(-ENOMEM);
- }
tags[level].vlan_proto = VLAN_N_VID;
return tags;
}