diff options
Diffstat (limited to 'init/Kconfig')
-rw-r--r-- | init/Kconfig | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/init/Kconfig b/init/Kconfig index be788c0957d4..5721d27af626 100644 --- a/init/Kconfig +++ b/init/Kconfig | |||
@@ -287,6 +287,18 @@ config BSD_PROCESS_ACCT_V3 | |||
287 | for processing it. A preliminary version of these tools is available | 287 | for processing it. A preliminary version of these tools is available |
288 | at <http://www.gnu.org/software/acct/>. | 288 | at <http://www.gnu.org/software/acct/>. |
289 | 289 | ||
290 | config FHANDLE | ||
291 | bool "open by fhandle syscalls" | ||
292 | select EXPORTFS | ||
293 | help | ||
294 | If you say Y here, a user level program will be able to map | ||
295 | file names to handle and then later use the handle for | ||
296 | different file system operations. This is useful in implementing | ||
297 | userspace file servers, which now track files using handles instead | ||
298 | of names. The handle would remain the same even if file names | ||
299 | get renamed. Enables open_by_handle_at(2) and name_to_handle_at(2) | ||
300 | syscalls. | ||
301 | |||
290 | config TASKSTATS | 302 | config TASKSTATS |
291 | bool "Export task/process statistics through netlink (EXPERIMENTAL)" | 303 | bool "Export task/process statistics through netlink (EXPERIMENTAL)" |
292 | depends on NET | 304 | depends on NET |
@@ -683,6 +695,16 @@ config CGROUP_MEM_RES_CTLR_SWAP_ENABLED | |||
683 | select this option (if, for some reason, they need to disable it | 695 | select this option (if, for some reason, they need to disable it |
684 | then noswapaccount does the trick). | 696 | then noswapaccount does the trick). |
685 | 697 | ||
698 | config CGROUP_PERF | ||
699 | bool "Enable perf_event per-cpu per-container group (cgroup) monitoring" | ||
700 | depends on PERF_EVENTS && CGROUPS | ||
701 | help | ||
702 | This option extends the per-cpu mode to restrict monitoring to | ||
703 | threads which belong to the cgroup specified and run on the | ||
704 | designated cpu. | ||
705 | |||
706 | Say N if unsure. | ||
707 | |||
686 | menuconfig CGROUP_SCHED | 708 | menuconfig CGROUP_SCHED |
687 | bool "Group CPU scheduler" | 709 | bool "Group CPU scheduler" |
688 | depends on EXPERIMENTAL | 710 | depends on EXPERIMENTAL |