aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstephen hemminger <stephen@networkplumber.org>2016-08-31 15:17:49 -0700
committerDavid S. Miller <davem@davemloft.net>2016-09-01 14:09:00 -0700
commit3ee5256da092a4047e54dc36e4d6d45ca49652a6 (patch)
tree871bc897fdd8dcd4fac82922659725afd7af8a49
parentbatman: make netlink attributes const (diff)
downloadlinux-dev-3ee5256da092a4047e54dc36e4d6d45ca49652a6.tar.xz
linux-dev-3ee5256da092a4047e54dc36e4d6d45ca49652a6.zip
netns: make nla_policy const
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/core/net_namespace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/net_namespace.c b/net/core/net_namespace.c
index 1fe58167d39a..7a77dcabd4e8 100644
--- a/net/core/net_namespace.c
+++ b/net/core/net_namespace.c
@@ -533,7 +533,7 @@ static struct pernet_operations __net_initdata net_ns_ops = {
.exit = net_ns_net_exit,
};
-static struct nla_policy rtnl_net_policy[NETNSA_MAX + 1] = {
+static const struct nla_policy rtnl_net_policy[NETNSA_MAX + 1] = {
[NETNSA_NONE] = { .type = NLA_UNSPEC },
[NETNSA_NSID] = { .type = NLA_S32 },
[NETNSA_PID] = { .type = NLA_U32 },