mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
integrity: ima iint radix_tree_lookup locking fix
Based on Andrew Morton's comments: - add missing locks around radix_tree_lookup in ima_iint_insert() Signed-off-by: Mimi Zohar <zohar@us.ibm.com> Cc: James Morris <jmorris@namei.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: James Morris <jmorris@namei.org>
This commit is contained in:
parent
1581e7ddbd
commit
be38e0fd5f
1 changed files with 2 additions and 0 deletions
|
@ -73,8 +73,10 @@ out:
|
|||
if (rc < 0) {
|
||||
kmem_cache_free(iint_cache, iint);
|
||||
if (rc == -EEXIST) {
|
||||
spin_lock(&ima_iint_lock);
|
||||
iint = radix_tree_lookup(&ima_iint_store,
|
||||
(unsigned long)inode);
|
||||
spin_unlock(&ima_iint_lock);
|
||||
} else
|
||||
iint = NULL;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue