diff options
author | Kuniyuki Iwashima <kuniyu@amazon.com> | 2024-10-04 15:10:31 -0700 |
---|---|---|
committer | Paolo Abeni <pabeni@redhat.com> | 2024-10-08 15:16:59 +0200 |
commit | 03fa534856593bb4edf4935451fa55863e34a108 (patch) | |
tree | cf035d8c7a17f5ad69d418d74bc0a9aa2b750a2f /net/core/Makefile | |
parent | 844e5e7e656d3a7a904fd5607f8491d6fd01db8e (diff) |
rtnetlink: Add ASSERT_RTNL_NET() placeholder for netdev notifier.
The global and per-netns netdev notifier depend on RTNL, and its
dependency is not so clear due to nested calls.
Let's add a placeholder to place ASSERT_RTNL_NET() for each event.
Signed-off-by: Kuniyuki Iwashima <kuniyu@amazon.com>
Reviewed-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Diffstat (limited to 'net/core/Makefile')
-rw-r--r-- | net/core/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/core/Makefile b/net/core/Makefile index c3ebbaf9c81e..5a72a87ee0f1 100644 --- a/net/core/Makefile +++ b/net/core/Makefile @@ -45,3 +45,4 @@ obj-$(CONFIG_BPF_SYSCALL) += bpf_sk_storage.o obj-$(CONFIG_OF) += of_net.o obj-$(CONFIG_NET_TEST) += net_test.o obj-$(CONFIG_NET_DEVMEM) += devmem.o +obj-$(CONFIG_DEBUG_NET_SMALL_RTNL) += rtnl_net_debug.o |