namespaces: remove pid_ns and net_ns experimental status
authorDaniel Lezcano <[email protected]>
Wed, 27 Oct 2010 22:34:37 +0000 (15:34 -0700)
committerLinus Torvalds <[email protected]>
Thu, 28 Oct 2010 01:03:16 +0000 (18:03 -0700)
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 <[email protected]>
Cc: "Eric W. Biederman" <[email protected]>
Cc: David Miller <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
init/Kconfig

index 3ae8ffe738eb4878d9d1fe383e36279026d396e0..c91ce6bcbe683b68315343065289276d6337a7c0 100644 (file)
@@ -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.