Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751316AbXBUPFh (ORCPT ); Wed, 21 Feb 2007 10:05:37 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751315AbXBUPFh (ORCPT ); Wed, 21 Feb 2007 10:05:37 -0500 Received: from mx2.redhat.com ([66.187.237.31]:34537 "EHLO mx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751285AbXBUPFf (ORCPT ); Wed, 21 Feb 2007 10:05:35 -0500 Message-Id: <20070221144842.396545000@taijtu.programming.kicks-ass.net> References: <20070221144304.512721000@taijtu.programming.kicks-ass.net> User-Agent: quilt/0.46-1 Date: Wed, 21 Feb 2007 15:43:13 +0100 From: Peter Zijlstra To: linux-kernel@vger.kernel.org, linux-mm@kvack.org, netdev@vger.kernel.org Cc: Peter Zijlstra , Trond Myklebust , Thomas Graf , David Miller Subject: [PATCH 09/29] selinux: tag avc cache alloc as non-critical Content-Disposition: inline; filename=mm-selinux-emergency.patch Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 975 Lines: 28 Failing to allocate a cache entry will only harm performance. Signed-off-by: Peter Zijlstra --- 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; -- - 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/