All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] RDMA: Fix netdev tracker in ib_device_set_netdev
@ 2024-07-10 20:33 David Ahern
  2024-07-11 10:12 ` Leon Romanovsky
  2024-07-11 10:18 ` Leon Romanovsky
  0 siblings, 2 replies; 4+ messages in thread
From: David Ahern @ 2024-07-10 20:33 UTC (permalink / raw)
  To: linux-rdma; +Cc: jgg, leon, David Ahern

If a netdev has already been assigned, ib_device_set_netdev needs to
release the reference on the older netdev but it is mistakenly being
called for the new netdev. Fix it and in the process use netdev_put
to be symmetrical with the netdev_hold.

Fixes: 09f530f0c6d6 ("RDMA: Add netdevice_tracker to ib_device_set_netdev()")
Signed-off-by: David Ahern <dsahern@kernel.org>
---
v2
- remove __dev_put now that netdev_put is used

 drivers/infiniband/core/device.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/infiniband/core/device.c b/drivers/infiniband/core/device.c
index 55aa7aa32d4a..9b99112baf47 100644
--- a/drivers/infiniband/core/device.c
+++ b/drivers/infiniband/core/device.c
@@ -2167,14 +2167,13 @@ int ib_device_set_netdev(struct ib_device *ib_dev, struct net_device *ndev,
 	}
 
 	if (old_ndev)
-		netdev_tracker_free(ndev, &pdata->netdev_tracker);
+		netdev_put(old_ndev, &pdata->netdev_tracker);
 	if (ndev)
 		netdev_hold(ndev, &pdata->netdev_tracker, GFP_ATOMIC);
 	rcu_assign_pointer(pdata->netdev, ndev);
 	spin_unlock_irqrestore(&pdata->netdev_lock, flags);
 
 	add_ndev_hash(pdata);
-	__dev_put(old_ndev);
 
 	return 0;
 }
-- 
2.39.3 (Apple Git-146)


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-07-11 10:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-10 20:33 [PATCH v2] RDMA: Fix netdev tracker in ib_device_set_netdev David Ahern
2024-07-11 10:12 ` Leon Romanovsky
2024-07-11 10:17   ` Leon Romanovsky
2024-07-11 10:18 ` Leon Romanovsky

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.