From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from psmtp.com (na3sys010amx183.postini.com [74.125.245.183]) by kanga.kvack.org (Postfix) with SMTP id 6E51D6B1402 for ; Mon, 6 Feb 2012 17:56:46 -0500 (EST) From: Mel Gorman Subject: [PATCH 02/11] selinux: tag avc cache alloc as non-critical Date: Mon, 6 Feb 2012 22:56:32 +0000 Message-Id: <1328569001-17599-3-git-send-email-mgorman@suse.de> In-Reply-To: <1328569001-17599-1-git-send-email-mgorman@suse.de> References: <1328569001-17599-1-git-send-email-mgorman@suse.de> Sender: owner-linux-mm@kvack.org List-ID: To: Linux-MM Cc: Linux-Netdev , Linux-NFS , LKML , Andrew Morton , David Miller , Trond Myklebust , Neil Brown , Christoph Hellwig , Peter Zijlstra , Mel Gorman 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 Signed-off-by: Mel Gorman --- security/selinux/avc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/security/selinux/avc.c b/security/selinux/avc.c index dca1c22..a68d200 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.3.4 -- 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: email@kvack.org