Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757339AbZAWPoT (ORCPT ); Fri, 23 Jan 2009 10:44:19 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754628AbZAWPoH (ORCPT ); Fri, 23 Jan 2009 10:44:07 -0500 Received: from smtp.ultrahosting.com ([74.213.174.254]:56284 "EHLO smtp.ultrahosting.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751185AbZAWPoG (ORCPT ); Fri, 23 Jan 2009 10:44:06 -0500 Date: Fri, 23 Jan 2009 10:41:15 -0500 (EST) From: Christoph Lameter X-X-Sender: cl@qirst.com To: Nick Piggin cc: Pekka Enberg , "Zhang, Yanmin" , Lin Ming , linux-mm@kvack.org, linux-kernel@vger.kernel.org, Andrew Morton , Linus Torvalds Subject: Re: [patch] SLQB slab allocator In-Reply-To: <20090123040913.GG20098@wotan.suse.de> Message-ID: References: <20090114152207.GD25401@wotan.suse.de> <84144f020901140730l747b4e06j41fb8a35daeaf6c8@mail.gmail.com> <20090114155923.GC1616@wotan.suse.de> <20090115061931.GC17810@wotan.suse.de> <20090116034356.GM17810@wotan.suse.de> <20090119061856.GB22584@wotan.suse.de> <20090123040913.GG20098@wotan.suse.de> User-Agent: Alpine 1.10 (DEB 962 2008-03-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2296 Lines: 46 On Fri, 23 Jan 2009, Nick Piggin wrote: > > No it cannot because in SLUB objects must come from the same page. > > Multiple objects in a queue will only ever require a single page and not > > multiple like in SLAB. > > I don't know how that solves the problem. Task with memory policy A > allocates an object, which allocates the "fast" page with policy A > and allocates an object. Then context switch to task with memory > policy B which allocates another object, which is taken from the page > allocated with policy A. Right? Correct. But this is only an issue if you think about policies applying to individual object allocations (like realized in SLAB). If policies only apply to pages (which is sufficient for balancing IMHO) then this is okay. > > (OK this doesn't give the wrong policy 100% of the time; I thought > there could have been a context switch race during page allocation > that would result in 100% incorrect, but anyway it could still be > significantly incorrect couldn't it?) Memory policies are applied in a fuzzy way anyways. A context switch can result in page allocation action that changes the expected interleave pattern. Page populations in an address space depend on the task policy. So the exact policy applied to a page depends on the task. This isnt an exact thing. > "the first cpu will consume more and more memory from the page allocator > whereas the second will build up huge per cpu lists" > > And this is wrong. There is another possible issue where every single > object on the freelist might come from a different (and otherwise free) > page, and thus eg 100 8 byte objects might consume 400K. > > That's not an invalid concern, but I think it will be quite rare, and > the periodic queue trimming should naturally help this because it will > cycle out those objects and if new allocations are needed, they will > come from new pages which can be packed more densely. Well but you said that you would defer the trimming (due to latency concerns). The longer you defer the larger the lists will get. -- 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/