From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter Zijlstra Subject: Re: [PATCH 08/40] mm: kmem_cache_objsize Date: Fri, 04 May 2007 20:21:44 +0200 Message-ID: <1178302904.2767.6.camel@lappy> References: <20070504102651.923946304@chello.nl> <20070504103157.215424767@chello.nl> <1178301545.24217.56.camel@twins> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org, netdev@vger.kernel.org, Trond Myklebust , Thomas Graf , David Miller , James Bottomley , Mike Christie , Andrew Morton , Daniel Phillips , Pekka Enberg To: Christoph Lameter Return-path: Received: from amsfep17-int.chello.nl ([213.46.243.15]:8212 "EHLO amsfep14-int.chello.nl" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1031508AbXEDS0n (ORCPT ); Fri, 4 May 2007 14:26:43 -0400 In-Reply-To: Sender: netdev-owner@vger.kernel.org List-Id: netdev.vger.kernel.org On Fri, 2007-05-04 at 11:04 -0700, Christoph Lameter wrote: > On Fri, 4 May 2007, Peter Zijlstra wrote: > > > > I could add a function that tells you how many object you could allocate > > > from a slab without the page allocator becoming involved? It would count > > > the object slots available on the partial slabs. > > > > I need to know how many pages to reserve to allocate a given number of > > items from a given slab; assuming the partial slabs are empty. That is, > > I need a worst case upper bound. > > Ok so you really need the number of objects per page? If you know the > number of objects then you can calculate the pages needed which would be > the maximum memory needed? Yes, that would work.