Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2060a577 authored by Allan Stephens's avatar Allan Stephens Committed by Paul Gortmaker
Browse files

tipc: Enable use by containers having their own network namespace



Permits a Linux container to use TIPC sockets even when it has its own
network namespace defined by removing the check that prohibits such use.
This makes it possible for users who wish to isolate their container
network traffic from normal network traffic to utilize TIPC.

Signed-off-by: default avatarAllan Stephens <allan.stephens@windriver.com>
Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
parent 1ba9ac7c
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -185,9 +185,6 @@ static int tipc_create(struct net *net, struct socket *sock, int protocol,

	/* Validate arguments */

	if (!net_eq(net, &init_net))
		return -EAFNOSUPPORT;

	if (unlikely(protocol != 0))
		return -EPROTONOSUPPORT;