Skip to content

Commit

Permalink
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel…
Browse files Browse the repository at this point in the history
…/git/jmorris/security-testing-2.6

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6:
  ima: replace GFP_KERNEL with GFP_NOFS
  • Loading branch information
Linus Torvalds committed Nov 19, 2009
2 parents d22966d + c09c59e commit 7f6f350
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions security/integrity/ima/ima_iint.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 7f6f350

Please sign in to comment.