Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7f6f3507 authored by Linus Torvalds's avatar Linus Torvalds
Browse files

Merge branch 'for-linus' of...

parents d22966d0 c09c59e6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -58,11 +58,11 @@ struct ima_iint_cache *ima_iint_insert(struct inode *inode)

	if (!ima_initialized)
		return iint;
	iint = kmem_cache_alloc(iint_cache, GFP_KERNEL);
	iint = kmem_cache_alloc(iint_cache, GFP_NOFS);
	if (!iint)
		return iint;

	rc = radix_tree_preload(GFP_KERNEL);
	rc = radix_tree_preload(GFP_NOFS);
	if (rc < 0)
		goto out;