diff options
Diffstat (limited to 'init')
-rw-r--r-- | init/Kconfig | 31 |
1 files changed, 24 insertions, 7 deletions
diff --git a/init/Kconfig b/init/Kconfig index 3da09dab537..56240e724d9 100644 --- a/init/Kconfig +++ b/init/Kconfig | |||
@@ -69,11 +69,6 @@ config BROKEN_ON_SMP | |||
69 | depends on BROKEN || !SMP | 69 | depends on BROKEN || !SMP |
70 | default y | 70 | default y |
71 | 71 | ||
72 | config LOCK_KERNEL | ||
73 | bool | ||
74 | depends on (SMP || PREEMPT) && BKL | ||
75 | default y | ||
76 | |||
77 | config INIT_ENV_ARG_LIMIT | 72 | config INIT_ENV_ARG_LIMIT |
78 | int | 73 | int |
79 | default 32 if !UML | 74 | default 32 if !UML |
@@ -287,6 +282,18 @@ config BSD_PROCESS_ACCT_V3 | |||
287 | for processing it. A preliminary version of these tools is available | 282 | for processing it. A preliminary version of these tools is available |
288 | at <http://www.gnu.org/software/acct/>. | 283 | at <http://www.gnu.org/software/acct/>. |
289 | 284 | ||
285 | config FHANDLE | ||
286 | bool "open by fhandle syscalls" | ||
287 | select EXPORTFS | ||
288 | help | ||
289 | If you say Y here, a user level program will be able to map | ||
290 | file names to handle and then later use the handle for | ||
291 | different file system operations. This is useful in implementing | ||
292 | userspace file servers, which now track files using handles instead | ||
293 | of names. The handle would remain the same even if file names | ||
294 | get renamed. Enables open_by_handle_at(2) and name_to_handle_at(2) | ||
295 | syscalls. | ||
296 | |||
290 | config TASKSTATS | 297 | config TASKSTATS |
291 | bool "Export task/process statistics through netlink (EXPERIMENTAL)" | 298 | bool "Export task/process statistics through netlink (EXPERIMENTAL)" |
292 | depends on NET | 299 | depends on NET |
@@ -683,6 +690,16 @@ config CGROUP_MEM_RES_CTLR_SWAP_ENABLED | |||
683 | select this option (if, for some reason, they need to disable it | 690 | select this option (if, for some reason, they need to disable it |
684 | then noswapaccount does the trick). | 691 | then noswapaccount does the trick). |
685 | 692 | ||
693 | config CGROUP_PERF | ||
694 | bool "Enable perf_event per-cpu per-container group (cgroup) monitoring" | ||
695 | depends on PERF_EVENTS && CGROUPS | ||
696 | help | ||
697 | This option extends the per-cpu mode to restrict monitoring to | ||
698 | threads which belong to the cgroup specified and run on the | ||
699 | designated cpu. | ||
700 | |||
701 | Say N if unsure. | ||
702 | |||
686 | menuconfig CGROUP_SCHED | 703 | menuconfig CGROUP_SCHED |
687 | bool "Group CPU scheduler" | 704 | bool "Group CPU scheduler" |
688 | depends on EXPERIMENTAL | 705 | depends on EXPERIMENTAL |
@@ -814,7 +831,7 @@ config MM_OWNER | |||
814 | bool | 831 | bool |
815 | 832 | ||
816 | config SYSFS_DEPRECATED | 833 | config SYSFS_DEPRECATED |
817 | bool "enable deprecated sysfs features to support old userspace tools" | 834 | bool "Enable deprecated sysfs features to support old userspace tools" |
818 | depends on SYSFS | 835 | depends on SYSFS |
819 | default n | 836 | default n |
820 | help | 837 | help |
@@ -837,7 +854,7 @@ config SYSFS_DEPRECATED | |||
837 | need to say Y here. | 854 | need to say Y here. |
838 | 855 | ||
839 | config SYSFS_DEPRECATED_V2 | 856 | config SYSFS_DEPRECATED_V2 |
840 | bool "enabled deprecated sysfs features by default" | 857 | bool "Enable deprecated sysfs features by default" |
841 | default n | 858 | default n |
842 | depends on SYSFS | 859 | depends on SYSFS |
843 | depends on SYSFS_DEPRECATED | 860 | depends on SYSFS_DEPRECATED |