From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Tue, 17 Jul 2007 15:09:28 +0900 From: Yasunori Goto Subject: Re: [PATCH] slob: sparsemem support. In-Reply-To: <20070713093557.GA3403@linux-sh.org> References: <20070713093557.GA3403@linux-sh.org> Message-Id: <20070717150606.5E1E.Y-GOTO@jp.fujitsu.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Sender: owner-linux-mm@kvack.org Return-Path: To: Paul Mundt , Andrew Morton , Matt Mackall , linux-mm@kvack.org List-ID: Looks good to me too. Thanks. Acked-by: Yasunori Goto > Currently slob is disabled if we're using sparsemem, due to an earlier > patch from Goto-san. Slob and static sparsemem work without any trouble > as it is, and the only hiccup is a missing slab_is_available() in the > case of sparsemem extreme. With this, we're rid of the last set of > restrictions for slob usage. > > Signed-off-by: Paul Mundt > > -- > > init/Kconfig | 2 +- > mm/slob.c | 8 ++++++++ > 2 files changed, 9 insertions(+), 1 deletion(-) > > diff -urN linux-2.6.22-rc6-mm1.orig/init/Kconfig linux-2.6.22-rc6-mm1/init/Kconfig > --- linux-2.6.22-rc6-mm1.orig/init/Kconfig 2007-07-06 07:47:49.000000000 +0900 > +++ linux-2.6.22-rc6-mm1/init/Kconfig 2007-07-06 09:50:29.000000000 +0900 > @@ -625,7 +625,7 @@ > and has enhanced diagnostics. > > config SLOB > - depends on EMBEDDED && !SPARSEMEM > + depends on EMBEDDED > bool "SLOB (Simple Allocator)" > help > SLOB replaces the SLAB allocator with a drastically simpler > diff -urN linux-2.6.22-rc6-mm1.orig/mm/slob.c linux-2.6.22-rc6-mm1/mm/slob.c > --- linux-2.6.22-rc6-mm1.orig/mm/slob.c 2007-07-06 07:47:50.000000000 +0900 > +++ linux-2.6.22-rc6-mm1/mm/slob.c 2007-07-06 09:56:16.000000000 +0900 > @@ -606,6 +606,14 @@ > return 0; > } > > +static unsigned int slob_ready __read_mostly; > + > +int slab_is_available(void) > +{ > + return slob_ready; > +} > + > void __init kmem_cache_init(void) > { > + slob_ready = 1; > } -- Yasunori Goto -- 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/ . Don't email: email@kvack.org