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: block-6.6-2023-09-08~22^2~141^2 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=f5370ba3590d1e141c288eed2c0e53618b91356d;p=linux-2.6-block.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 de3ae9c57da0..f398bec78457 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)