From 9bd38c2cdaba1f3ab2e6f90ac1b3d72481477092 Mon Sep 17 00:00:00 2001 From: Daniel Lezcano Date: Wed, 27 Oct 2010 15:34:37 -0700 Subject: namespaces: remove pid_ns and net_ns experimental status The pid namespace is in the kernel since 2.6.27 and the net_ns since 2.6.29. They are enabled in the distro by default and used by userspace component. They are mature enough to remove the 'experimental' label. Signed-off-by: Daniel Lezcano Cc: "Eric W. Biederman" Cc: David Miller Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- init/Kconfig | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'init') diff --git a/init/Kconfig b/init/Kconfig index 3ae8ffe738eb..c91ce6bcbe68 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -766,21 +766,18 @@ config USER_NS If unsure, say N. config PID_NS - bool "PID Namespaces (EXPERIMENTAL)" + bool "PID Namespaces" default n - depends on NAMESPACES && EXPERIMENTAL + depends on NAMESPACES help Support process id namespaces. This allows having multiple processes with the same pid as long as they are in different pid namespaces. This is a building block of containers. - Unless you want to work with an experimental feature - say N here. - config NET_NS bool "Network namespace" default n - depends on NAMESPACES && EXPERIMENTAL && NET + depends on NAMESPACES && NET help Allow user space to create what appear to be multiple instances of the network stack. -- cgit v1.2.3-59-g8ed1b