From: Zhengchao Shao Date: Thu, 10 Aug 2023 13:50:07 +0000 (+0800) Subject: bonding: remove unnecessary NULL check in bond_destructor X-Git-Tag: v6.6-rc1~162^2~141^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f5370ba3590d1e141c288eed2c0e53618b91356d;p=thirdparty%2Fkernel%2Flinux.git bonding: remove unnecessary NULL check in bond_destructor The free_percpu function also could check whether "rr_tx_counter" parameter is NULL. Therefore, remove NULL check in bond_destructor. Signed-off-by: Zhengchao Shao Signed-off-by: David S. Miller --- diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index de3ae9c57da07..f398bec784574 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c @@ -5863,8 +5863,7 @@ static void bond_destructor(struct net_device *bond_dev) if (bond->wq) destroy_workqueue(bond->wq); - if (bond->rr_tx_counter) - free_percpu(bond->rr_tx_counter); + free_percpu(bond->rr_tx_counter); } void bond_setup(struct net_device *bond_dev)