From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Fy8ji-0005qh-TE for qemu-devel@nongnu.org; Wed, 05 Jul 2006 10:52:18 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Fy8jh-0005pi-5c for qemu-devel@nongnu.org; Wed, 05 Jul 2006 10:52:18 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Fy8jh-0005pa-0h for qemu-devel@nongnu.org; Wed, 05 Jul 2006 10:52:17 -0400 Received: from [65.74.133.6] (helo=mail.codesourcery.com) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1Fy8xb-0000uQ-PJ for qemu-devel@nongnu.org; Wed, 05 Jul 2006 11:06:40 -0400 From: Paul Brook Subject: Re: [Qemu-devel] balloon driver Date: Wed, 5 Jul 2006 15:52:11 +0100 References: <946a3fda0607041958p2e5daab3o2c6d3f633aafc089@mail.gmail.com> In-Reply-To: <946a3fda0607041958p2e5daab3o2c6d3f633aafc089@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200607051552.12914.paul@codesourcery.com> Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org On Wednesday 05 July 2006 03:58, Eric L wrote: > I've been playing around with QEMU the past few days and have been > quite impressed. One thing I wondered about: it seems that most of > the other virtualization schemes have some sort of balloon driver to > reclaim unused (cached) guest memory. (VMWare, Xen and I think user > mode linux has something too). It seems like a pretty good idea to > me, but from my searching, it would appear that QEMU does not have > anything similar. Is this correct? If so, is there a reason why? Partly because qemu is just a normal user application. It can be swapped out by the host OS just like any other process. Adding a few Gb of extra swap and letting the host OS figure it out should get you 90% of the benefit. Paul