diff options
| author | Jakub Kicinski <[email protected]> | 2025-03-07 18:30:06 +0000 |
|---|---|---|
| committer | Jakub Kicinski <[email protected]> | 2025-03-08 17:06:50 +0000 |
| commit | 8ef890df4031121a94407c84659125cbccd3fdbe (patch) | |
| tree | 3200b186f428a9dd37b0b7e9bd034cf8e32a9f9f /net/core/net-sysfs.c | |
| parent | hamradio: use netdev_lockdep_set_classes() helper (diff) | |
| download | kernel-8ef890df4031121a94407c84659125cbccd3fdbe.tar.gz kernel-8ef890df4031121a94407c84659125cbccd3fdbe.zip | |
net: move misc netdev_lock flavors to a separate header
Move the more esoteric helpers for netdev instance lock to
a dedicated header. This avoids growing netdevice.h to infinity
and makes rebuilding the kernel much faster (after touching
the header with the helpers).
The main netdev_lock() / netdev_unlock() functions are used
in static inlines in netdevice.h and will probably be used
most commonly, so keep them in netdevice.h.
Acked-by: Stanislav Fomichev <[email protected]>
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Jakub Kicinski <[email protected]>
Diffstat (limited to 'net/core/net-sysfs.c')
| -rw-r--r-- | net/core/net-sysfs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/core/net-sysfs.c b/net/core/net-sysfs.c index 02d1d40b47ae..529a0f721268 100644 --- a/net/core/net-sysfs.c +++ b/net/core/net-sysfs.c @@ -23,6 +23,7 @@ #include <linux/of.h> #include <linux/of_net.h> #include <linux/cpu.h> +#include <net/netdev_lock.h> #include <net/netdev_rx_queue.h> #include <net/rps.h> |
