diff options
author | Casey Schaufler <casey@schaufler-ca.com> | 2020-04-28 15:00:26 -0700 |
---|---|---|
committer | Casey Schaufler <casey@schaufler-ca.com> | 2020-05-06 14:46:26 -0700 |
commit | 4ca75287064be97ac6b67e332e0c082291a515dc (patch) | |
tree | 954841caa324f38bf5ca524ed9f56b63e713f089 /security/smack | |
parent | 921bb1cbb31bb0424b47de52174da20367449c8e (diff) | |
download | linux-4ca75287064be97ac6b67e332e0c082291a515dc.tar.gz linux-4ca75287064be97ac6b67e332e0c082291a515dc.tar.bz2 linux-4ca75287064be97ac6b67e332e0c082291a515dc.zip |
Smack:- Remove redundant inode_smack cache
The inode_smack cache is no longer used.
Remove it.
Signed-off-by: Vishal Goel <vishal.goel@samsung.com>
Signed-off-by: Casey Schaufler <casey@schaufler-ca.com>
Diffstat (limited to 'security/smack')
-rw-r--r-- | security/smack/smack_lsm.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/security/smack/smack_lsm.c b/security/smack/smack_lsm.c index 339356939018..6d4883a43fff 100644 --- a/security/smack/smack_lsm.c +++ b/security/smack/smack_lsm.c @@ -52,7 +52,6 @@ static DEFINE_MUTEX(smack_ipv6_lock); static LIST_HEAD(smk_ipv6_port_list); -static struct kmem_cache *smack_inode_cache; struct kmem_cache *smack_rule_cache; int smack_enabled; @@ -4747,15 +4746,9 @@ static __init int smack_init(void) struct cred *cred = (struct cred *) current->cred; struct task_smack *tsp; - smack_inode_cache = KMEM_CACHE(inode_smack, 0); - if (!smack_inode_cache) - return -ENOMEM; - smack_rule_cache = KMEM_CACHE(smack_rule, 0); - if (!smack_rule_cache) { - kmem_cache_destroy(smack_inode_cache); + if (!smack_rule_cache) return -ENOMEM; - } /* * Set the security state for the initial task. |