Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S261192AbVBLUOl (ORCPT ); Sat, 12 Feb 2005 15:14:41 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S261195AbVBLUOk (ORCPT ); Sat, 12 Feb 2005 15:14:40 -0500 Received: from parcelfarce.linux.theplanet.co.uk ([195.92.249.252]:10427 "EHLO parcelfarce.linux.theplanet.co.uk") by vger.kernel.org with ESMTP id S261192AbVBLUOh (ORCPT ); Sat, 12 Feb 2005 15:14:37 -0500 Date: Sat, 12 Feb 2005 14:18:40 -0200 From: Marcelo Tosatti To: Andi Kleen Cc: Ray Bryant , Ray Bryant , linux-mm , linux-kernel Subject: Re: [RFC 2.6.11-rc2-mm2 0/7] mm: manual page migration -- overview Message-ID: <20050212161840.GC26714@logos.cnet> References: <20050212032535.18524.12046.26397@tomahawk.engr.sgi.com> <20050212155426.GA26714@logos.cnet> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050212155426.GA26714@logos.cnet> User-Agent: Mutt/1.5.5.1i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2624 Lines: 60 On Sat, Feb 12, 2005 at 01:54:26PM -0200, Marcelo Tosatti wrote: > On Sat, Feb 12, 2005 at 12:17:25PM +0100, Andi Kleen wrote: > > Ray Bryant writes: > > > set of pages associated with a particular process need to be moved. > > > The kernel interface that we are proposing is the following: > > > > > > page_migrate(pid, va_start, va_end, count, old_nodes, new_nodes); > > > > [Only commenting on the interface, haven't read your patches at all] > > > > This is basically mbind() with MPOL_F_STRICT, except that it has a pid > > argument. I assume that's for the benefit of your batch scheduler. > > As far as I understand mbind() is used to set policies to given memory > regions, not move memory regions? > > > But it's not clear to me how and why the batch scheduler should know about > > virtual addresses of different processes anyways. Walking > > /proc/pid/maps? That's all inherently racy when the process is doing > > mmap in parallel. The only way I can think of to do this would be to > > check for changes in maps after a full move and loop, but then you risk > > livelock. > > True. > > There is no problem, however, if all threads beloging to the process are stopped, > as Ray mentions. > > So, there wont be memory mapping changes happening at the same time. > > Note that the memory migration code which sys_page_migrate() uses moves > running processes to other memory zones, handling truncate, etc. > > > And you cannot also just specify va_start=0, va_end=~0UL because that > > would make the node arrays grow infinitely. > > > > Also is there a good use case why the batch scheduler should only > > move individual areas in a process around, not the full process? > > Quoting him: > > "In addition to its use by batch schedulers, we also envision that > this facility could be used by a program to re-arrange the allocation > of its own pages on various nodes of the NUMA system, most likely > to optimize performance of the application during different phases > of its computation." > > Seems doable. > > Are there any good xamples of optimizations that could be made by > moving pages around except for NUMA? If you have virtually indexed caches moving pages around can optimize cache behaviour if program access pattern is well known? That is not a thing common thing to do - and is architecture dependant anyway. - 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/