From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1161613AbXEDSlX (ORCPT ); Fri, 4 May 2007 14:41:23 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1161619AbXEDSlW (ORCPT ); Fri, 4 May 2007 14:41:22 -0400 Received: from courier.cs.helsinki.fi ([128.214.9.1]:42427 "EHLO mail.cs.helsinki.fi" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1161616AbXEDSlV (ORCPT ); Fri, 4 May 2007 14:41:21 -0400 Message-ID: <463B7E5C.8030201@cs.helsinki.fi> Date: Fri, 04 May 2007 21:41:32 +0300 From: Pekka Enberg User-Agent: Thunderbird 1.5.0.10 (Macintosh/20070221) MIME-Version: 1.0 To: Christoph Lameter CC: Peter Zijlstra , 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 Subject: Re: [PATCH 08/40] mm: kmem_cache_objsize References: <20070504102651.923946304@chello.nl> <20070504103157.215424767@chello.nl> <1178301545.24217.56.camel@twins> <1178302904.2767.6.camel@lappy> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Christoph Lameter wrote: > Hmmm... Maybe lets have > > unsigned kmem_estimate_pages(struct kmem_cache *slab_cache, int objects) > > which would calculate the worst case memory scenario for allocation the > number of indicated objects? IIRC this looks more or less what Peter had initially. I don't like the API because there's no way for slab (perhaps this is different for slub) how many pages you really need due to per-node and per-cpu caches, etc. It's better that the slab tells you what it actually knows and lets the callers figure out what a worst-case upper bound is. Pekka