LVS
lvs-devel
Google
 
Web LinuxVirtualServer.org

[PATCH net-next] ipvs: fix doc syntax for conn_max sysctl

To: Simon Horman <horms@xxxxxxxxxxxx>
Subject: [PATCH net-next] ipvs: fix doc syntax for conn_max sysctl
Cc: Pablo Neira Ayuso <pablo@xxxxxxxxxxxxx>, Florian Westphal <fw@xxxxxxxxx>, lvs-devel@xxxxxxxxxxxxxxx, netfilter-devel@xxxxxxxxxxxxxxx
From: Julian Anastasov <ja@xxxxxx>
Date: Tue, 9 Jun 2026 01:56:55 +0300
Fix the docutils error reported by kernel test robot
for the new conn_max sysctl:

Documentation/networking/ipvs-sysctl.rst:76: WARNING: Block quote ends
without a blank line; unexpected unindent. [docutils]
Documentation/networking/ipvs-sysctl.rst:76: ERROR: Unexpected section
title or transition.

Reported-by: kernel test robot <lkp@xxxxxxxxx>
Closes: 
https://lore.kernel.org/oe-kbuild-all/202606071851.Dc1H7hOO-lkp@xxxxxxxxx/
Fixes: 4a15044a2b06 ("ipvs: add conn_max sysctl to limit connections")
Signed-off-by: Julian Anastasov <ja@xxxxxx>
---
 Documentation/networking/ipvs-sysctl.rst | 23 ++++++++++++++++-------
 1 file changed, 16 insertions(+), 7 deletions(-)

diff --git a/Documentation/networking/ipvs-sysctl.rst 
b/Documentation/networking/ipvs-sysctl.rst
index b6bac2612420..fe36f4fcd3a0 100644
--- a/Documentation/networking/ipvs-sysctl.rst
+++ b/Documentation/networking/ipvs-sysctl.rst
@@ -72,20 +72,29 @@ conn_max - INTEGER
        Netfilter connection tracking) the connections can be
        limited also by nf_conntrack_max.
 
-                               soft limit      hard limit
-       =====================================================
-       init_net:
+       Limits for init_net:
+
+       ======================= =============== =============
+       \                       soft limit      hard limit
+       ======================= =============== =============
        create netns            platform        platform
        priv admin              0 .. platform   0 .. platform
-       =====================================================
-       new netns:
+       ======================= =============== =============
+
+       Limits for new netns:
+
+       ======================= =============== =============
+       \                       soft limit      hard limit
+       ======================= =============== =============
        create netns            init_net:soft   init_net:soft
        priv admin              0 .. platform   0 .. platform
        unpriv admin            0 .. hard       N/A
+       ======================= =============== =============
 
        Limits per platform:
-       1,073,741,824 (2^30 for 64-bit)
-          16,777,216 (2^24 for 32-bit)
+
+       - 1,073,741,824 (2^30 for 64-bit)
+       - 16,777,216 (2^24 for 32-bit)
 
        Possible values: 0 .. platform limit
 
-- 
2.54.0




<Prev in Thread] Current Thread [Next in Thread>
  • [PATCH net-next] ipvs: fix doc syntax for conn_max sysctl, Julian Anastasov <=