diff options
Diffstat (limited to 'net/ipv4/protocol.c')
-rw-r--r-- | net/ipv4/protocol.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net/ipv4/protocol.c b/net/ipv4/protocol.c index 0f9d09f54bd9..ce848461acbb 100644 --- a/net/ipv4/protocol.c +++ b/net/ipv4/protocol.c | |||
@@ -37,6 +37,12 @@ const struct net_offload __rcu *inet_offloads[MAX_INET_PROTOS] __read_mostly; | |||
37 | 37 | ||
38 | int inet_add_protocol(const struct net_protocol *prot, unsigned char protocol) | 38 | int inet_add_protocol(const struct net_protocol *prot, unsigned char protocol) |
39 | { | 39 | { |
40 | if (!prot->netns_ok) { | ||
41 | pr_err("Protocol %u is not namespace aware, cannot register.\n", | ||
42 | protocol); | ||
43 | return -EINVAL; | ||
44 | } | ||
45 | |||
40 | return !cmpxchg((const struct net_protocol **)&inet_protos[protocol], | 46 | return !cmpxchg((const struct net_protocol **)&inet_protos[protocol], |
41 | NULL, prot) ? 0 : -1; | 47 | NULL, prot) ? 0 : -1; |
42 | } | 48 | } |