Re: [PATCH 02/12] selinux: tag avc cache alloc as non-critical
From: Eric Paris <hidden>
Date: 2012-05-10 14:25:56
Also in:
linux-mm, linux-nfs, lkml
On Thu, May 10, 2012 at 9:54 AM, Mel Gorman [off-list ref] wrote:
Failing to allocate a cache entry will only harm performance not correctness. Do not consume valuable reserve pages for something like that. Signed-off-by: Peter Zijlstra <redacted> Signed-off-by: Mel Gorman <mgorman@suse.de>
Acked-by: Eric Paris <eparis@redhat.com>
quoted hunk ↗ jump to hunk
--- security/selinux/avc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)diff --git a/security/selinux/avc.c b/security/selinux/avc.c index 8ee42b2..75c2977 100644 --- a/security/selinux/avc.c +++ b/security/selinux/avc.c@@ -280,7 +280,7 @@ static struct avc_node *avc_alloc_node(void){ struct avc_node *node; - node = kmem_cache_zalloc(avc_node_cachep, GFP_ATOMIC); + node = kmem_cache_zalloc(avc_node_cachep, GFP_ATOMIC|__GFP_NOMEMALLOC); if (!node) goto out; -- 1.7.9.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
-- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/ Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>