From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757591AbZCDSHc (ORCPT ); Wed, 4 Mar 2009 13:07:32 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751630AbZCDSHY (ORCPT ); Wed, 4 Mar 2009 13:07:24 -0500 Received: from smtp-out.google.com ([216.239.33.17]:13063 "EHLO smtp-out.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751438AbZCDSHX (ORCPT ); Wed, 4 Mar 2009 13:07:23 -0500 DomainKey-Signature: a=rsa-sha1; s=beta; d=google.com; c=nofws; q=dns; h=date:from:x-x-sender:to:cc:subject:in-reply-to:message-id: references:user-agent:mime-version:content-type:x-system-of-record; b=og2ZhDppqobSPJSe8hKcTjsD0VDSH/4I4OMXH8pAJc4lZ/Uo7u2c5REf2sOfP+V2g sqHJf+3X06wwNSJ/vg0ug== Date: Wed, 4 Mar 2009 10:06:49 -0800 (PST) From: David Rientjes X-X-Sender: rientjes@chino.kir.corp.google.com To: Christoph Lameter cc: Paul Menage , Pekka Enberg , Andrew Morton , Randy Dunlap , linux-kernel@vger.kernel.org Subject: Re: [patch 2/2] slub: enforce cpuset restrictions for cpu slabs In-Reply-To: Message-ID: References: <6599ad830903031355y3e12dec6n4b7b675d354f8e72@mail.gmail.com> <6599ad830903031653t231eb921md60a1aa21effa87b@mail.gmail.com> User-Agent: Alpine 2.00 (DEB 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-System-Of-Record: true Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 4 Mar 2009, Christoph Lameter wrote: > That would make the per object memory policies in SLUB configurable? If > you can do that without regression and its clean then it would be > acceptable. > Yes, if `slab_hardwall' is enabled for a cpuset it will attempt to replace the cpu slab with a partial slab on an allowed node. > Again if you want per object memory policies in SLUB then it needs to be > added consistently. You would also f.e. have to check for an MPOL_BIND > condition where you check for cpuset nodes and make sure that __slab_alloc > goes round robin on MPOL_INTERLEAVE etc etc. You end up with a similar > nightmare implementation of that stuff as in SLAB. I agree that we should avoid adding mempolicy support, especially MPOL_INTERLEAVE at the object level since that would totally avoid the fastpath for any task using it.