From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754671Ab0AZQ1g (ORCPT ); Tue, 26 Jan 2010 11:27:36 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754567Ab0AZQ1f (ORCPT ); Tue, 26 Jan 2010 11:27:35 -0500 Received: from zeniv.linux.org.uk ([195.92.253.2]:48715 "EHLO ZenIV.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753581Ab0AZQ1f (ORCPT ); Tue, 26 Jan 2010 11:27:35 -0500 Date: Tue, 26 Jan 2010 16:27:30 +0000 From: Al Viro To: Mimi Zohar Cc: linux-kernel@vger.kernel.org, Eric Paris , Hugh Dickins , James Morris , David Safford , "Serge E. Hallyn" , Mimi Zohar Subject: Re: [RFC PATCH 1/2] Fix 1 untangling ima mess, part 2 with counters Message-ID: <20100126162730.GI19799@ZenIV.linux.org.uk> References: <4ad974923eae7a8f52be0786a630b6c64bee9d32.1264018123.git.zohar@linux.vnet.ibm.com> <20100123230735.GW19799@ZenIV.linux.org.uk> <1264447477.3696.30.camel@dyn9002018117.watson.ibm.com> <20100126130349.GH19799@ZenIV.linux.org.uk> <1264519015.3789.28.camel@dyn9002018117.watson.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1264519015.3789.28.camel@dyn9002018117.watson.ibm.com> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Jan 26, 2010 at 10:16:55AM -0500, Mimi Zohar wrote: > --- security-testing-2.6.orig/init/main.c > +++ security-testing-2.6/init/main.c > @@ -663,9 +663,9 @@ asmlinkage void __init start_kernel(void > proc_caches_init(); > buffer_init(); > key_init(); > + radix_tree_init(); > security_init(); > vfs_caches_init(totalram_pages); > - radix_tree_init(); > signals_init(); > /* rootfs populating might need page-writeback */ > page_writeback_init(); FWIW, I'd take radix_tree_init() much earlier than that; it's a common infrastructure and if we have it early it'll mean less headache. AFAICS, it can go right after mm_init(). Objections, anyone? Other than that, I'm OK with that one.