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.
|