2021-12-05 04:21:57 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
|
|
|
|
config NET_DEV_REFCNT_TRACKER
|
|
|
|
bool "Enable net device refcount tracking"
|
2022-09-15 12:42:56 +00:00
|
|
|
depends on DEBUG_KERNEL && STACKTRACE_SUPPORT && NET
|
2021-12-05 04:21:57 +00:00
|
|
|
select REF_TRACKER
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Enable debugging feature to track device references.
|
|
|
|
This adds memory and cpu costs.
|
2021-12-10 07:44:21 +00:00
|
|
|
|
|
|
|
config NET_NS_REFCNT_TRACKER
|
|
|
|
bool "Enable networking namespace refcount tracking"
|
2022-09-15 12:42:56 +00:00
|
|
|
depends on DEBUG_KERNEL && STACKTRACE_SUPPORT && NET
|
2021-12-10 07:44:21 +00:00
|
|
|
select REF_TRACKER
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Enable debugging feature to track netns references.
|
|
|
|
This adds memory and cpu costs.
|
2022-05-10 03:57:38 +00:00
|
|
|
|
|
|
|
config DEBUG_NET
|
|
|
|
bool "Add generic networking debug"
|
2022-06-02 16:18:57 +00:00
|
|
|
depends on DEBUG_KERNEL && NET
|
2022-05-10 03:57:38 +00:00
|
|
|
help
|
|
|
|
Enable extra sanity checks in networking.
|
|
|
|
This is mostly used by fuzzers, but is safe to select.
|
2024-10-04 22:10:29 +00:00
|
|
|
|
|
|
|
config DEBUG_NET_SMALL_RTNL
|
|
|
|
bool "Add extra per-netns mutex inside RTNL"
|
|
|
|
depends on DEBUG_KERNEL && NET && LOCK_DEBUGGING_SUPPORT
|
|
|
|
select PROVE_LOCKING
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
rtnl_lock() is being replaced with rtnl_net_lock() that
|
|
|
|
acquires the global RTNL and a small per-netns RTNL mutex.
|
|
|
|
|
|
|
|
During the conversion, rtnl_net_lock() just adds an extra
|
|
|
|
mutex in every RTNL scope and slows down the operations.
|
|
|
|
|
|
|
|
Once the conversion completes, rtnl_lock() will be removed
|
|
|
|
and rtnetlink will gain per-netns scalability.
|