diff options
author | Arvind Yadav <arvind.yadav.cs@gmail.com> | 2017-08-26 06:47:35 -0400 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2017-08-28 17:33:19 -0400 |
commit | 0c3014f22dec0e1d14c8298551bfb6434638bdd9 (patch) | |
tree | 17557ee83464a436e694a9d167c33ff0238abc7e /security/selinux/hooks.c | |
parent | 901ef845fa2469c211ce3b1e955d9e7245ab5d50 (diff) |
selinux: constify nf_hook_ops
nf_hook_ops are not supposed to change at runtime. nf_register_net_hooks
and nf_unregister_net_hooks are working with const nf_hook_ops.
So mark the non-const nf_hook_ops structs as const.
Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'security/selinux/hooks.c')
-rw-r--r-- | security/selinux/hooks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c index f803fdcde9cf..45943e18da8b 100644 --- a/security/selinux/hooks.c +++ b/security/selinux/hooks.c | |||
@@ -6550,7 +6550,7 @@ security_initcall(selinux_init); | |||
6550 | 6550 | ||
6551 | #if defined(CONFIG_NETFILTER) | 6551 | #if defined(CONFIG_NETFILTER) |
6552 | 6552 | ||
6553 | static struct nf_hook_ops selinux_nf_ops[] = { | 6553 | static const struct nf_hook_ops selinux_nf_ops[] = { |
6554 | { | 6554 | { |
6555 | .hook = selinux_ipv4_postroute, | 6555 | .hook = selinux_ipv4_postroute, |
6556 | .pf = NFPROTO_IPV4, | 6556 | .pf = NFPROTO_IPV4, |