<!DOCTYPE html>
<!-- BaNnErBlUrFlE-BoDy-start -->
<!-- Preheader Text : BEGIN -->
<div style="display:none !important;display:none;visibility:hidden;mso-hide:all;font-size:1px;color:#ffffff;line-height:1px;max-height:0px;opacity:0;overflow:hidden;">
Add a config option for the 'sysctl: ' module aliases feature. Signed-off-by: Mauricio Faria de Oliveira <mfo@ igalia. com> --- fs/proc/Kconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/fs/proc/Kconfig b/fs/proc/Kconfig</div>
<!-- Preheader Text : END -->

<!-- Email Banner : BEGIN -->
<div style="display:none !important;display:none;visibility:hidden;mso-hide:all;font-size:1px;color:#ffffff;line-height:1px;max-height:0px;opacity:0;overflow:hidden;"></div>
<!-- Email Banner : END -->

<!-- BaNnErBlUrFlE-BoDy-end -->
<html>
<head><!-- BaNnErBlUrFlE-HeAdEr-start -->
<style>
  #pfptBanneryw0s3fh { all: revert !important; display: block !important;
    visibility: visible !important; opacity: 1 !important;
    background-color: #c2d4d4 !important;
    max-width: none !important; max-height: none !important }
  .pfptPrimaryButtonyw0s3fh:hover, .pfptPrimaryButtonyw0s3fh:focus {
    background-color: #a2b1b1 !important; }
  .pfptPrimaryButtonyw0s3fh:active {
    background-color: #828e8e !important; }
  html:root, html:root>body { all: revert !important; display: block !important;
    visibility: visible !important; opacity: 1 !important; }
</style>

<!-- BaNnErBlUrFlE-HeAdEr-end -->
</head><body><pre style="font-family: sans-serif; font-size: 100%; white-space: pre-wrap; word-wrap: break-word">Add a config option for the 'sysctl:' module aliases feature.

Signed-off-by: Mauricio Faria de Oliveira <mfo@igalia.com>
---
 fs/proc/Kconfig | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/fs/proc/Kconfig b/fs/proc/Kconfig
index 24f5a36f45df8b1d6831a0f4011c1f6b1987cb52..ea77cb2b0b0e3e52ff2d19d9bb16d5a3f5ab8162 100644
--- a/fs/proc/Kconfig
+++ b/fs/proc/Kconfig
@@ -98,6 +98,19 @@ config SYSCTL
          building a kernel for install/rescue disks or your system is very
          limited in memory.
 
+config SYSCTL_MODULE_ALIASES
+       bool "'sysctl:' module aliases (EXPERIMENTAL)"
+       depends on SYSCTL && MODULES
+       default n
+       help
+         The /proc/sys files registered by a module do not exist until the
+         module is loaded; meanwhile, userspace cannot find or access them.
+
+         This option adds 'sysctl:*/<path>/<file>' module aliases for the
+         /proc/sys files registered by modules, so modules for nonexistent
+         files can be loaded with 'modprobe sysctl:/proc/sys/<path>/<file>'
+         by userspace when needed.
+
 config PROC_PAGE_MONITOR
        default y
        depends on PROC_FS && MMU

-- 
2.47.3

</pre></body></html>