diff options
Diffstat (limited to 'init')
-rw-r--r-- | init/Kconfig | 14 | ||||
-rw-r--r-- | init/main.c | 2 |
2 files changed, 13 insertions, 3 deletions
diff --git a/init/Kconfig b/init/Kconfig index fe25ffbe818b..3f42cd66f0f8 100644 --- a/init/Kconfig +++ b/init/Kconfig | |||
@@ -376,7 +376,7 @@ config AUDIT_LOGINUID_IMMUTABLE | |||
376 | bool "Make audit loginuid immutable" | 376 | bool "Make audit loginuid immutable" |
377 | depends on AUDIT | 377 | depends on AUDIT |
378 | help | 378 | help |
379 | The config option toggles if a task setting it's loginuid requires | 379 | The config option toggles if a task setting its loginuid requires |
380 | CAP_SYS_AUDITCONTROL or if that task should require no special permissions | 380 | CAP_SYS_AUDITCONTROL or if that task should require no special permissions |
381 | but should instead only allow setting its loginuid if it was never | 381 | but should instead only allow setting its loginuid if it was never |
382 | previously set. On systems which use systemd or a similar central | 382 | previously set. On systems which use systemd or a similar central |
@@ -727,7 +727,6 @@ config CGROUP_PERF | |||
727 | 727 | ||
728 | menuconfig CGROUP_SCHED | 728 | menuconfig CGROUP_SCHED |
729 | bool "Group CPU scheduler" | 729 | bool "Group CPU scheduler" |
730 | depends on EXPERIMENTAL | ||
731 | default n | 730 | default n |
732 | help | 731 | help |
733 | This feature lets CPU scheduler recognize task groups and control CPU | 732 | This feature lets CPU scheduler recognize task groups and control CPU |
@@ -798,6 +797,17 @@ config DEBUG_BLK_CGROUP | |||
798 | 797 | ||
799 | endif # CGROUPS | 798 | endif # CGROUPS |
800 | 799 | ||
800 | config CHECKPOINT_RESTORE | ||
801 | bool "Checkpoint/restore support" if EXPERT | ||
802 | default n | ||
803 | help | ||
804 | Enables additional kernel features in a sake of checkpoint/restore. | ||
805 | In particular it adds auxiliary prctl codes to setup process text, | ||
806 | data and heap segment sizes, and a few additional /proc filesystem | ||
807 | entries. | ||
808 | |||
809 | If unsure, say N here. | ||
810 | |||
801 | menuconfig NAMESPACES | 811 | menuconfig NAMESPACES |
802 | bool "Namespaces support" if EXPERT | 812 | bool "Namespaces support" if EXPERT |
803 | default !EXPERT | 813 | default !EXPERT |
diff --git a/init/main.c b/init/main.c index 415548e808d2..ff49a6dacfbb 100644 --- a/init/main.c +++ b/init/main.c | |||
@@ -648,7 +648,7 @@ static void __init do_ctors(void) | |||
648 | #endif | 648 | #endif |
649 | } | 649 | } |
650 | 650 | ||
651 | int initcall_debug; | 651 | bool initcall_debug; |
652 | core_param(initcall_debug, initcall_debug, bool, 0644); | 652 | core_param(initcall_debug, initcall_debug, bool, 0644); |
653 | 653 | ||
654 | static char msgbuf[64]; | 654 | static char msgbuf[64]; |