~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/fs/proc/Kconfig

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /fs/proc/Kconfig (Version linux-6.12-rc7) and /fs/proc/Kconfig (Version linux-4.14.336)


  1 # SPDX-License-Identifier: GPL-2.0-only        << 
  2 config PROC_FS                                      1 config PROC_FS
  3         bool "/proc file system support" if EX      2         bool "/proc file system support" if EXPERT
  4         default y                                   3         default y
  5         help                                        4         help
  6           This is a virtual file system provid      5           This is a virtual file system providing information about the status
  7           of the system. "Virtual" means that       6           of the system. "Virtual" means that it doesn't take up any space on
  8           your hard disk: the files are create      7           your hard disk: the files are created on the fly by the kernel when
  9           you try to access them. Also, you ca      8           you try to access them. Also, you cannot read the files with older
 10           version of the program less: you nee      9           version of the program less: you need to use more or cat.
 11                                                    10 
 12           It's totally cool; for example, "cat     11           It's totally cool; for example, "cat /proc/interrupts" gives
 13           information about what the different     12           information about what the different IRQs are used for at the moment
 14           (there is a small number of Interrup     13           (there is a small number of Interrupt ReQuest lines in your computer
 15           that are used by the attached device     14           that are used by the attached devices to gain the CPU's attention --
 16           often a source of trouble if two dev     15           often a source of trouble if two devices are mistakenly configured
 17           to use the same IRQ). The program pr     16           to use the same IRQ). The program procinfo to display some
 18           information about your system gather     17           information about your system gathered from the /proc file system.
 19                                                    18 
 20           Before you can use the /proc file sy     19           Before you can use the /proc file system, it has to be mounted,
 21           meaning it has to be given a locatio     20           meaning it has to be given a location in the directory hierarchy.
 22           That location should be /proc. A com     21           That location should be /proc. A command such as "mount -t proc proc
 23           /proc" or the equivalent line in /et     22           /proc" or the equivalent line in /etc/fstab does the job.
 24                                                    23 
 25           The /proc file system is explained i     24           The /proc file system is explained in the file
 26           <file:Documentation/filesystems/proc !!  25           <file:Documentation/filesystems/proc.txt> and on the proc(5) manpage
 27           ("man 5 proc").                          26           ("man 5 proc").
 28                                                    27 
 29           This option will enlarge your kernel     28           This option will enlarge your kernel by about 67 KB. Several
 30           programs depend on this, so everyone     29           programs depend on this, so everyone should say Y here.
 31                                                    30 
 32 config PROC_KCORE                                  31 config PROC_KCORE
 33         bool "/proc/kcore support" if !ARM         32         bool "/proc/kcore support" if !ARM
 34         depends on PROC_FS && MMU                  33         depends on PROC_FS && MMU
 35         select VMCORE_INFO                     << 
 36         help                                       34         help
 37           Provides a virtual ELF core file of      35           Provides a virtual ELF core file of the live kernel.  This can
 38           be read with gdb and other ELF tools     36           be read with gdb and other ELF tools.  No modifications can be
 39           made using this mechanism.               37           made using this mechanism.
 40                                                    38 
 41 config PROC_VMCORE                                 39 config PROC_VMCORE
 42         bool "/proc/vmcore support"                40         bool "/proc/vmcore support"
 43         depends on PROC_FS && CRASH_DUMP           41         depends on PROC_FS && CRASH_DUMP
 44         default y                                  42         default y
 45         help                                   !!  43         help
 46           Exports the dump image of crashed ke !!  44         Exports the dump image of crashed kernel in ELF format.
 47                                                << 
 48 config PROC_VMCORE_DEVICE_DUMP                 << 
 49         bool "Device Hardware/Firmware Log Col << 
 50         depends on PROC_VMCORE                 << 
 51         default n                              << 
 52         help                                   << 
 53           After kernel panic, device drivers c << 
 54           specific snapshot of their hardware  << 
 55           underlying devices are initialized i << 
 56           Note that the device driver must be  << 
 57           recovery kernel's initramfs to colle << 
 58           snapshot.                            << 
 59                                                << 
 60           If you say Y here, the collected dev << 
 61           as ELF notes to /proc/vmcore. You ca << 
 62           dump using the kernel command line o << 
 63                                                    45 
 64 config PROC_SYSCTL                                 46 config PROC_SYSCTL
 65         bool "Sysctl support (/proc/sys)" if E     47         bool "Sysctl support (/proc/sys)" if EXPERT
 66         depends on PROC_FS                         48         depends on PROC_FS
 67         select SYSCTL                              49         select SYSCTL
 68         default y                                  50         default y
 69         help                                   !!  51         ---help---
 70           The sysctl interface provides a mean     52           The sysctl interface provides a means of dynamically changing
 71           certain kernel parameters and variab     53           certain kernel parameters and variables on the fly without requiring
 72           a recompile of the kernel or reboot      54           a recompile of the kernel or reboot of the system.  The primary
 73           interface is through /proc/sys.  If      55           interface is through /proc/sys.  If you say Y here a tree of
 74           modifiable sysctl entries will be ge     56           modifiable sysctl entries will be generated beneath the
 75           /proc/sys directory. They are explai !!  57           /proc/sys directory. They are explained in the files
 76           in <file:Documentation/admin-guide/s !!  58           in <file:Documentation/sysctl/>.  Note that enabling this
 77           option will enlarge the kernel by at     59           option will enlarge the kernel by at least 8 KB.
 78                                                    60 
 79           As it is generally a good thing, you     61           As it is generally a good thing, you should say Y here unless
 80           building a kernel for install/rescue     62           building a kernel for install/rescue disks or your system is very
 81           limited in memory.                       63           limited in memory.
 82                                                    64 
 83 config PROC_PAGE_MONITOR                           65 config PROC_PAGE_MONITOR
 84         default y                                  66         default y
 85         depends on PROC_FS && MMU                  67         depends on PROC_FS && MMU
 86         bool "Enable /proc page monitoring" if     68         bool "Enable /proc page monitoring" if EXPERT
 87         help                                       69         help
 88           Various /proc files exist to monitor     70           Various /proc files exist to monitor process memory utilization:
 89           /proc/pid/smaps, /proc/pid/clear_ref     71           /proc/pid/smaps, /proc/pid/clear_refs, /proc/pid/pagemap,
 90           /proc/kpagecount, and /proc/kpagefla     72           /proc/kpagecount, and /proc/kpageflags. Disabling these
 91           interfaces will reduce the size of t !!  73           interfaces will reduce the size of the kernel by approximately 4kb.
 92                                                    74 
 93 config PROC_CHILDREN                               75 config PROC_CHILDREN
 94         bool "Include /proc/<pid>/task/<tid>/c     76         bool "Include /proc/<pid>/task/<tid>/children file"
 95         depends on PROC_FS                     << 
 96         default n                                  77         default n
 97         help                                       78         help
 98           Provides a fast way to retrieve firs     79           Provides a fast way to retrieve first level children pids of a task. See
 99           <file:Documentation/filesystems/proc !!  80           <file:Documentation/filesystems/proc.txt> for more information.
100                                                    81 
101           Say Y if you are running any user-sp     82           Say Y if you are running any user-space software which takes benefit from
102           this interface. For example, rkt is      83           this interface. For example, rkt is such a piece of software.
103                                                << 
104 config PROC_PID_ARCH_STATUS                    << 
105         def_bool n                             << 
106         depends on PROC_FS                     << 
107                                                << 
108 config PROC_CPU_RESCTRL                        << 
109         def_bool n                             << 
110         depends on PROC_FS                     << 
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php