From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail190.messagelabs.com (mail190.messagelabs.com [216.82.249.51]) by kanga.kvack.org (Postfix) with SMTP id C4BDF6001DA for ; Tue, 19 Jan 2010 03:07:09 -0500 (EST) Received: by fxm28 with SMTP id 28so1735162fxm.6 for ; Tue, 19 Jan 2010 00:07:07 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <20100119075205.GI14345@redhat.com> References: <20100118133755.GG30698@redhat.com> <20100118141938.GI30698@redhat.com> <84144f021001180805q4d1203b8qab8ccb1de87b2866@mail.gmail.com> <20100118170816.GA22111@redhat.com> <84144f021001181009m52f7eaebp2bd746f92de08da9@mail.gmail.com> <20100118181942.GD22111@redhat.com> <20100118191031.0088f49a@lxorguk.ukuu.org.uk> <20100119071734.GG14345@redhat.com> <84144f021001182337o274c8ed3q8ce60581094bc2b9@mail.gmail.com> <20100119075205.GI14345@redhat.com> Date: Tue, 19 Jan 2010 10:07:07 +0200 Message-ID: <84144f021001190007q54a334dfwed64189e6cf0b7c4@mail.gmail.com> Subject: Re: [PATCH v6] add MAP_UNLOCKED mmap flag From: Pekka Enberg Content-Type: text/plain; charset=ISO-8859-1 Sender: owner-linux-mm@kvack.org To: Gleb Natapov Cc: Alan Cox , linux-mm@kvack.org, kosaki.motohiro@jp.fujitsu.com, linux-kernel@vger.kernel.org, linux-api@vger.kernel.org, akpm@linux-foundation.org, andrew.c.morrow@gmail.com, "Paul E. McKenney" List-ID: Hi Gleb, On Tue, Jan 19, 2010 at 9:52 AM, Gleb Natapov wrote: >> It would be probably useful if you could point us to the application >> source code that actually wants this feature. >> > This is two line patch to qemu that calls mlockall(MCL_CURRENT|MCL_FUTURE) > at the beginning of the main() and changes guest memory allocation to > use MAP_UNLOCKED flag. All alternative solutions in this thread suggest > that I should rewrite qemu + all library it uses. You see why I can't > take them seriously? Well, that's not going to be portable, is it, so the application design would still be broken, no? Did you try using (or extending) posix_madvise(MADV_DONTNEED) for the guest address space? It seems to me that you're trying to use a big hammer (mlock) when a polite hint for the VM would probably be sufficient for it do its job. Pekka -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org