aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/admin-guide/sysctl/net.rst
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2021-03-23 07:49:23 +0100
committerDavid S. Miller <davem@davemloft.net>2021-03-23 17:22:50 -0700
commit5aa3afe107d9099fc0dea2acf82c3e3c8f0f20e2 (patch)
tree03a69b161a77f895e1c47c6c0f46eb617207181a /Documentation/admin-guide/sysctl/net.rst
parentnet: ethernet: Remove duplicate include of vhca_event.h (diff)
downloadlinux-dev-5aa3afe107d9099fc0dea2acf82c3e3c8f0f20e2.tar.xz
linux-dev-5aa3afe107d9099fc0dea2acf82c3e3c8f0f20e2.zip
net: make unregister netdev warning timeout configurable
netdev_wait_allrefs() issues a warning if refcount does not drop to 0 after 10 seconds. While 10 second wait generally should not happen under normal workload in normal environment, it seems to fire falsely very often during fuzzing and/or in qemu emulation (~10x slower). At least it's not possible to understand if it's really a false positive or not. Automated testing generally bumps all timeouts to very high values to avoid flake failures. Add net.core.netdev_unregister_timeout_secs sysctl to make the timeout configurable for automated testing systems. Lowering the timeout may also be useful for e.g. manual bisection. The default value matches the current behavior. Signed-off-by: Dmitry Vyukov <dvyukov@google.com> Fixes: https://bugzilla.kernel.org/show_bug.cgi?id=211877 Cc: netdev@vger.kernel.org Cc: linux-kernel@vger.kernel.org Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'Documentation/admin-guide/sysctl/net.rst')
-rw-r--r--Documentation/admin-guide/sysctl/net.rst11
1 files changed, 11 insertions, 0 deletions
diff --git a/Documentation/admin-guide/sysctl/net.rst b/Documentation/admin-guide/sysctl/net.rst
index f2ab8a5b6a4b..2090bfc69aa5 100644
--- a/Documentation/admin-guide/sysctl/net.rst
+++ b/Documentation/admin-guide/sysctl/net.rst
@@ -311,6 +311,17 @@ permit to distribute the load on several cpus.
If set to 1 (default), timestamps are sampled as soon as possible, before
queueing.
+netdev_unregister_timeout_secs
+------------------------------
+
+Unregister network device timeout in seconds.
+This option controls the timeout (in seconds) used to issue a warning while
+waiting for a network device refcount to drop to 0 during device
+unregistration. A lower value may be useful during bisection to detect
+a leaked reference faster. A larger value may be useful to prevent false
+warnings on slow/loaded systems.
+Default value is 10, minimum 0, maximum 3600.
+
optmem_max
----------