From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from cantor2.suse.de ([195.135.220.15]:46076 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933450Ab1IILBA (ORCPT ); Fri, 9 Sep 2011 07:01:00 -0400 From: Mel Gorman To: Linux-MM Cc: Linux-Netdev , Linux-NFS , LKML , Andrew Morton , David Miller , Trond Myklebust , Neil Brown , Peter Zijlstra , Mel Gorman Subject: [PATCH 02/10] selinux: tag avc cache alloc as non-critical Date: Fri, 9 Sep 2011 12:00:46 +0100 Message-Id: <1315566054-17209-3-git-send-email-mgorman@suse.de> In-Reply-To: <1315566054-17209-1-git-send-email-mgorman@suse.de> References: <1315566054-17209-1-git-send-email-mgorman@suse.de> Sender: linux-nfs-owner@vger.kernel.org List-ID: Content-Type: text/plain MIME-Version: 1.0 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