From: Weilong Chen Date: Thu, 23 Jan 2014 03:07:22 +0000 (+0800) Subject: team: Don't allow team devices to change network namespaces. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=99301ba11cb72f68f4e43e5778106035bd6965c4;p=deliverable%2Flinux.git team: Don't allow team devices to change network namespaces. Like bonding, team as netdevice doesn't cross netns boundaries. Team ports and team itself live in same netns. Signed-off-by: Weilong Chen Signed-off-by: David S. Miller --- diff --git a/drivers/net/team/team.c b/drivers/net/team/team.c index dff24e3dde4a..28407426fd6f 100644 --- a/drivers/net/team/team.c +++ b/drivers/net/team/team.c @@ -2034,6 +2034,10 @@ static void team_setup(struct net_device *dev) dev->features |= NETIF_F_LLTX; dev->features |= NETIF_F_GRO; + + /* Don't allow team devices to change network namespaces. */ + dev->features |= NETIF_F_NETNS_LOCAL; + dev->hw_features = TEAM_VLAN_FEATURES | NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX |