From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter Zijlstra Subject: [PATCH 10/40] selinux: tag avc cache alloc as non-critical Date: Fri, 04 May 2007 12:27:01 +0200 Message-ID: <20070504103157.687590214@chello.nl> References: <20070504102651.923946304@chello.nl> Cc: Peter Zijlstra , Trond Myklebust , Thomas Graf , David Miller , James Bottomley , Mike Christie , Andrew Morton , Daniel Phillips , James Morris To: linux-kernel@vger.kernel.org, linux-mm@kvack.org, netdev@vger.kernel.org Return-path: Received: from amsfep17-int.chello.nl ([213.46.243.15]:3563 "EHLO amsfep14-int.chello.nl" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1767810AbXEDKim (ORCPT ); Fri, 4 May 2007 06:38:42 -0400 Content-Disposition: inline; filename=mm-selinux-emergency.patch Sender: netdev-owner@vger.kernel.org List-Id: netdev.vger.kernel.org Failing to allocate a cache entry will only harm performance not correctness. Signed-off-by: Peter Zijlstra Acked-by: James Morris --- security/selinux/avc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6-git/security/selinux/avc.c =================================================================== --- linux-2.6-git.orig/security/selinux/avc.c 2007-02-14 08:31:13.000000000 +0100 +++ linux-2.6-git/security/selinux/avc.c 2007-02-14 10:10:47.000000000 +0100 @@ -332,7 +332,7 @@ static struct avc_node *avc_alloc_node(v { 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; --