File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed
Documentation/admin-guide/sysctl Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -446,6 +446,27 @@ Notes:
446
446
successful IPC object allocation. If an IPC object allocation syscall
447
447
fails, it is undefined if the value remains unmodified or is reset to -1.
448
448
449
+ modprobe:
450
+ =========
451
+
452
+ The path to the usermode helper for autoloading kernel modules, by
453
+ default "/sbin/modprobe". This binary is executed when the kernel
454
+ requests a module. For example, if userspace passes an unknown
455
+ filesystem type to mount(), then the kernel will automatically request
456
+ the corresponding filesystem module by executing this usermode helper.
457
+ This usermode helper should insert the needed module into the kernel.
458
+
459
+ This sysctl only affects module autoloading. It has no effect on the
460
+ ability to explicitly insert modules.
461
+
462
+ If this sysctl is set to the empty string, then module autoloading is
463
+ completely disabled. The kernel will not try to execute a usermode
464
+ helper at all, nor will it call the kernel_module_request LSM hook.
465
+
466
+ If CONFIG_STATIC_USERMODEHELPER=y is set in the kernel configuration,
467
+ then the configured static usermode helper overrides this sysctl,
468
+ except that the empty string is still accepted to completely disable
469
+ module autoloading as described above.
449
470
450
471
nmi_watchdog
451
472
============
You can’t perform that action at this time.
0 commit comments