diff options
Diffstat (limited to 'net/ipv4/tunnel4.c')
-rw-r--r-- | net/ipv4/tunnel4.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/ipv4/tunnel4.c b/net/ipv4/tunnel4.c index 978b3fd61e65..d3b709a6f264 100644 --- a/net/ipv4/tunnel4.c +++ b/net/ipv4/tunnel4.c | |||
@@ -136,6 +136,7 @@ static struct net_protocol tunnel4_protocol = { | |||
136 | .handler = tunnel4_rcv, | 136 | .handler = tunnel4_rcv, |
137 | .err_handler = tunnel4_err, | 137 | .err_handler = tunnel4_err, |
138 | .no_policy = 1, | 138 | .no_policy = 1, |
139 | .netns_ok = 1, | ||
139 | }; | 140 | }; |
140 | 141 | ||
141 | #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) | 142 | #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) |
@@ -143,6 +144,7 @@ static struct net_protocol tunnel64_protocol = { | |||
143 | .handler = tunnel64_rcv, | 144 | .handler = tunnel64_rcv, |
144 | .err_handler = tunnel64_err, | 145 | .err_handler = tunnel64_err, |
145 | .no_policy = 1, | 146 | .no_policy = 1, |
147 | .netns_ok = 1, | ||
146 | }; | 148 | }; |
147 | #endif | 149 | #endif |
148 | 150 | ||