[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250408195956.412733-1-kuba@kernel.org>
Date: Tue, 8 Apr 2025 12:59:47 -0700
From: Jakub Kicinski <kuba@...nel.org>
To: davem@...emloft.net
Cc: netdev@...r.kernel.org,
edumazet@...gle.com,
pabeni@...hat.com,
andrew+netdev@...n.ch,
horms@...nel.org,
sdf@...ichev.me,
hramamurthy@...gle.com,
kuniyu@...zon.com,
jdamato@...tly.com,
Jakub Kicinski <kuba@...nel.org>
Subject: [PATCH net-next v2 0/8] net: depend on instance lock for queue related netlink ops
netdev-genl used to be protected by rtnl_lock. In previous release
we already switched the queue management ops (for Rx zero-copy) to
the instance lock. This series converts other ops to depend on the
instance lock when possible.
Unfortunately queue related state is hard to lock (unlike NAPI)
as the process of switching the number of queues usually involves
a large reconfiguration of the driver. The reconfig process has
historically been under rtnl_lock, but for drivers which opt into
ops locking it is also under the instance lock. Leverage that
and conditionally take rtnl_lock or instance lock depending
on the device capabilities.
v2:
- fix a bug in patch 2
- reword the doc a tiny bit (patch 7)
v1: https://lore.kernel.org/20250407190117.16528-1-kuba@kernel.org
Jakub Kicinski (8):
net: avoid potential race between netdev_get_by_index_lock() and netns
switch
net: designate XSK pool pointers in queues as "ops protected"
netdev: add "ops compat locking" helpers
netdev: don't hold rtnl_lock over nl queue info get when possible
xdp: double protect netdev->xdp_flags with netdev->lock
netdev: depend on netdev->lock for xdp features
docs: netdev: break down the instance locking info per ops struct
netdev: depend on netdev->lock for qstats in ops locked drivers
Documentation/networking/netdevices.rst | 61 +++++++++++++----
include/linux/netdevice.h | 7 +-
include/net/netdev_lock.h | 16 +++++
include/net/netdev_queues.h | 4 +-
include/net/netdev_rx_queue.h | 6 +-
include/net/xdp.h | 1 +
net/core/dev.h | 17 ++++-
drivers/net/ethernet/google/gve/gve_main.c | 2 +-
net/core/dev.c | 76 ++++++++++++++++++++--
net/core/lock_debug.c | 2 +-
net/core/netdev-genl.c | 73 ++++++++++-----------
net/core/xdp.c | 12 +++-
net/xdp/xsk_buff_pool.c | 6 +-
13 files changed, 217 insertions(+), 66 deletions(-)
--
2.49.0
Powered by blists - more mailing lists