Commit 9bd38c2cdaba1f3ab2e6f90ac1b3d72481477092

Authored by Daniel Lezcano
Committed by Linus Torvalds
1 parent 1548bf316f

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 <daniel.lezcano@free.fr>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Cc: David Miller <davem@davemloft.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 3 additions and 6 deletions Side-by-side Diff

... ... @@ -766,21 +766,18 @@
766 766 If unsure, say N.
767 767  
768 768 config PID_NS
769   - bool "PID Namespaces (EXPERIMENTAL)"
  769 + bool "PID Namespaces"
770 770 default n
771   - depends on NAMESPACES && EXPERIMENTAL
  771 + depends on NAMESPACES
772 772 help
773 773 Support process id namespaces. This allows having multiple
774 774 processes with the same pid as long as they are in different
775 775 pid namespaces. This is a building block of containers.
776 776  
777   - Unless you want to work with an experimental feature
778   - say N here.
779   -
780 777 config NET_NS
781 778 bool "Network namespace"
782 779 default n
783   - depends on NAMESPACES && EXPERIMENTAL && NET
  780 + depends on NAMESPACES && NET
784 781 help
785 782 Allow user space to create what appear to be multiple instances
786 783 of the network stack.