Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

docs: admin-guide: move sysctl directory to it

The stuff under sysctl describes /sys interface from userspace
point of view. So, add it to the admin-guide and remove the
:orphan: from its index file.

Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>

+12 -13
+1 -1
CREDITS
··· 3120 3120 N: Rik van Riel 3121 3121 E: riel@redhat.com 3122 3122 W: http://www.surriel.com/ 3123 - D: Linux-MM site, Documentation/sysctl/*, swap/mm readaround 3123 + D: Linux-MM site, Documentation/admin-guide/sysctl/*, swap/mm readaround 3124 3124 D: kswapd fixes, random kernel hacker, rmap VM, 3125 3125 D: nl.linux.org administrator, minor scheduler additions 3126 3126 S: Red Hat Boston
+1
Documentation/admin-guide/index.rst
··· 16 16 README 17 17 kernel-parameters 18 18 devices 19 + sysctl/index 19 20 20 21 This section describes CPU vulnerabilities and their mitigations. 21 22
+1 -1
Documentation/admin-guide/kernel-parameters.txt
··· 3144 3144 numa_zonelist_order= [KNL, BOOT] Select zonelist order for NUMA. 3145 3145 'node', 'default' can be specified 3146 3146 This can be set from sysctl after boot. 3147 - See Documentation/sysctl/vm.rst for details. 3147 + See Documentation/admin-guide/sysctl/vm.rst for details. 3148 3148 3149 3149 ohci1394_dma=early [HW] enable debugging via the ohci1394 driver. 3150 3150 See Documentation/debugging-via-ohci1394.txt for more
+1 -1
Documentation/admin-guide/mm/index.rst
··· 11 11 Linux memory management is a complex system with many configurable 12 12 settings. Most of these settings are available via ``/proc`` 13 13 filesystem and can be quired and adjusted using ``sysctl``. These APIs 14 - are described in Documentation/sysctl/vm.rst and in `man 5 proc`_. 14 + are described in Documentation/admin-guide/sysctl/vm.rst and in `man 5 proc`_. 15 15 16 16 .. _man 5 proc: http://man7.org/linux/man-pages/man5/proc.5.html 17 17
+1 -1
Documentation/admin-guide/mm/ksm.rst
··· 59 59 60 60 If a region of memory must be split into at least one new MADV_MERGEABLE 61 61 or MADV_UNMERGEABLE region, the madvise may return ENOMEM if the process 62 - will exceed ``vm.max_map_count`` (see Documentation/sysctl/vm.rst). 62 + will exceed ``vm.max_map_count`` (see Documentation/admin-guide/sysctl/vm.rst). 63 63 64 64 Like other madvise calls, they are intended for use on mapped areas of 65 65 the user address space: they will report ENOMEM if the specified range
+1 -1
Documentation/core-api/printk-formats.rst
··· 119 119 120 120 For printing kernel pointers which should be hidden from unprivileged 121 121 users. The behaviour of %pK depends on the kptr_restrict sysctl - see 122 - Documentation/sysctl/kernel.rst for more details. 122 + Documentation/admin-guide/sysctl/kernel.rst for more details. 123 123 124 124 Unmodified Addresses 125 125 --------------------
+1 -1
Documentation/filesystems/proc.txt
··· 1500 1500 This chapter is heavily based on the documentation included in the pre 2.2 1501 1501 kernels, and became part of it in version 2.2.1 of the Linux kernel. 1502 1502 1503 - Please see: Documentation/sysctl/ directory for descriptions of these 1503 + Please see: Documentation/admin-guide/sysctl/ directory for descriptions of these 1504 1504 entries. 1505 1505 1506 1506 ------------------------------------------------------------------------------
+1 -1
Documentation/networking/ip-sysctl.txt
··· 2287 2287 2288 2288 2289 2289 /proc/sys/net/core/* 2290 - Please see: Documentation/sysctl/net.rst for descriptions of these entries. 2290 + Please see: Documentation/admin-guide/sysctl/net.rst for descriptions of these entries. 2291 2291 2292 2292 2293 2293 /proc/sys/net/unix/*
Documentation/sysctl/abi.rst Documentation/admin-guide/sysctl/abi.rst
Documentation/sysctl/fs.rst Documentation/admin-guide/sysctl/fs.rst
-2
Documentation/sysctl/index.rst Documentation/admin-guide/sysctl/index.rst
··· 1 - :orphan: 2 - 3 1 =========================== 4 2 Documentation for /proc/sys 5 3 ===========================
Documentation/sysctl/kernel.rst Documentation/admin-guide/sysctl/kernel.rst
Documentation/sysctl/net.rst Documentation/admin-guide/sysctl/net.rst
Documentation/sysctl/sunrpc.rst Documentation/admin-guide/sysctl/sunrpc.rst
Documentation/sysctl/user.rst Documentation/admin-guide/sysctl/user.rst
Documentation/sysctl/vm.rst Documentation/admin-guide/sysctl/vm.rst
+1 -1
Documentation/vm/unevictable-lru.rst
··· 439 439 440 440 The unevictable LRU can be scanned for compactable regions and the default 441 441 behavior is to do so. /proc/sys/vm/compact_unevictable_allowed controls 442 - this behavior (see Documentation/sysctl/vm.rst). Once scanning of the 442 + this behavior (see Documentation/admin-guide/sysctl/vm.rst). Once scanning of the 443 443 unevictable LRU is enabled, the work of compaction is mostly handled by 444 444 the page migration code and the same work flow as described in MIGRATING 445 445 MLOCKED PAGES will apply.
+1 -1
fs/proc/Kconfig
··· 72 72 interface is through /proc/sys. If you say Y here a tree of 73 73 modifiable sysctl entries will be generated beneath the 74 74 /proc/sys directory. They are explained in the files 75 - in <file:Documentation/sysctl/>. Note that enabling this 75 + in <file:Documentation/admin-guide/sysctl/>. Note that enabling this 76 76 option will enlarge the kernel by at least 8 KB. 77 77 78 78 As it is generally a good thing, you should say Y here unless
+1 -1
kernel/panic.c
··· 372 372 /** 373 373 * print_tainted - return a string to represent the kernel taint state. 374 374 * 375 - * For individual taint flag meanings, see Documentation/sysctl/kernel.rst 375 + * For individual taint flag meanings, see Documentation/admin-guide/sysctl/kernel.rst 376 376 * 377 377 * The string is overwritten by the next call to print_tainted(), 378 378 * but is always NULL terminated.
+1 -1
mm/swap.c
··· 8 8 /* 9 9 * This file contains the default values for the operation of the 10 10 * Linux VM subsystem. Fine-tuning documentation can be found in 11 - * Documentation/sysctl/vm.rst. 11 + * Documentation/admin-guide/sysctl/vm.rst. 12 12 * Started 18.12.91 13 13 * Swap aging added 23.2.95, Stephen Tweedie. 14 14 * Buffermem limits added 12.3.98, Rik van Riel.