Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753125Ab2HOL2E (ORCPT ); Wed, 15 Aug 2012 07:28:04 -0400 Received: from mx1.redhat.com ([209.132.183.28]:1455 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750724Ab2HOL2C (ORCPT ); Wed, 15 Aug 2012 07:28:02 -0400 Date: Wed, 15 Aug 2012 14:28:51 +0300 From: "Michael S. Tsirkin" To: Mel Gorman Cc: Rafael Aquini , linux-mm@kvack.org, linux-kernel@vger.kernel.org, virtualization@lists.linux-foundation.org, Rusty Russell , Rik van Riel , Andi Kleen , Andrew Morton , Konrad Rzeszutek Wilk , Minchan Kim Subject: Re: [PATCH v7 2/4] virtio_balloon: introduce migration primitives to balloon pages Message-ID: <20120815112851.GA2707@redhat.com> References: <20120813084123.GF14081@redhat.com> <20120814182244.GB13338@t510.redhat.com> <20120814195139.GA28870@redhat.com> <20120814201113.GE22133@t510.redhat.com> <20120815090528.GH4052@csn.ul.ie> <20120815092528.GA29214@redhat.com> <20120815094839.GJ4052@csn.ul.ie> <20120815100108.GA1999@redhat.com> <20120815111651.GL4052@csn.ul.ie> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120815111651.GL4052@csn.ul.ie> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2975 Lines: 64 On Wed, Aug 15, 2012 at 12:16:51PM +0100, Mel Gorman wrote: > On Wed, Aug 15, 2012 at 01:01:08PM +0300, Michael S. Tsirkin wrote: > > On Wed, Aug 15, 2012 at 10:48:39AM +0100, Mel Gorman wrote: > > > On Wed, Aug 15, 2012 at 12:25:28PM +0300, Michael S. Tsirkin wrote: > > > > On Wed, Aug 15, 2012 at 10:05:28AM +0100, Mel Gorman wrote: > > > > > On Tue, Aug 14, 2012 at 05:11:13PM -0300, Rafael Aquini wrote: > > > > > > On Tue, Aug 14, 2012 at 10:51:39PM +0300, Michael S. Tsirkin wrote: > > > > > > > What I think you should do is use rcu for access. > > > > > > > And here sync rcu before freeing. > > > > > > > Maybe an overkill but at least a documented synchronization > > > > > > > primitive, and it is very light weight. > > > > > > > > > > > > > > > > > > > I liked your suggestion on barriers, as well. > > > > > > > > > > > > > > > > I have not thought about this as deeply as I shouold but is simply rechecking > > > > > the mapping under the pages_lock to make sure the page is still a balloon > > > > > page an option? i.e. use pages_lock to stabilise page->mapping. > > > > > > > > To clarify, are you concerned about cost of rcu_read_lock > > > > for non balloon pages? > > > > > > > > > > Not as such, but given the choice between introducing RCU locking and > > > rechecking page->mapping under a spinlock I would choose the latter as it > > > is more straight-forward. > > > > OK but checking it how? page->mapping == balloon_mapping does not scale to > > multiple balloons, > > I was thinking of exactly that page->mapping == balloon_mapping check. As I > do not know how many active balloon drivers there might be I cannot guess > in advance how much of a scalability problem it will be. Not at all sure multiple drivers are worth supporting, but multiple *devices* is I think worth supporting, if for no other reason than that they can work today. For that, we need a device pointer which Rafael wants to put into the mapping, this means multiple balloon mappings. > > so I hoped we can switch to > > page->mapping->flags & BALLOON_MAPPING or some such, > > but this means we dereference it outside the lock ... > > > > That also sounded like future stuff to me that would be justified with > profiling if necessary. Personally I would have started with the spinlock > and a simple check and moved to RCU later when either scalability was a > problem or it was found there was a need to stabilise whether a page was > a balloon page or not outside a spinlock. > > This is not a NAK to the idea and I'm not objecting to RCU being used now > if that is what is really desired. I just suspect it's making the series > more complex than it needs to be right now. > > -- > Mel Gorman > SUSE Labs -- 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/