diff options
author | Paolo Abeni <pabeni@redhat.com> | 2016-04-08 12:20:30 +0200 |
---|---|---|
committer | James Morris <james.l.morris@oracle.com> | 2016-04-11 12:21:43 +1000 |
commit | 3c9d6296b7aee536a96ea2b53a15d23511738c1c (patch) | |
tree | dedc8acd900964e751dfd9512ca1e19a81c3380b /security | |
parent | 9735a22799b9214d17d3c231fe377fc852f042e9 (diff) | |
download | linux-3c9d6296b7aee536a96ea2b53a15d23511738c1c.tar.bz2 |
security: drop the unused hook skb_owned_by
The skb_owned_by hook was added with the commit ca10b9e9a8ca
("selinux: add a skb_owned_by() hook") and later removed
when said commit was reverted.
Later on, when switching to list of hooks, a field named
'skb_owned_by' was included into the security_hook_head struct,
but without any users nor caller.
This commit removes the said left-over field.
Fixes: b1d9e6b0646d ("LSM: Switch to lists of hooks")
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Acked-by: Casey Schaufler <casey@schaufler-ca.com>
Acked-by: Paul Moore <pmoore@paul-moore.com>
Signed-off-by: James Morris <james.l.morris@oracle.com>
Diffstat (limited to 'security')
-rw-r--r-- | security/security.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/security/security.c b/security/security.c index 3644b0344d29..554c3fb7d4a5 100644 --- a/security/security.c +++ b/security/security.c @@ -1848,7 +1848,6 @@ struct security_hook_heads security_hook_heads = { .tun_dev_attach = LIST_HEAD_INIT(security_hook_heads.tun_dev_attach), .tun_dev_open = LIST_HEAD_INIT(security_hook_heads.tun_dev_open), - .skb_owned_by = LIST_HEAD_INIT(security_hook_heads.skb_owned_by), #endif /* CONFIG_SECURITY_NETWORK */ #ifdef CONFIG_SECURITY_NETWORK_XFRM .xfrm_policy_alloc_security = |