Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933145Ab3CTSoA (ORCPT ); Wed, 20 Mar 2013 14:44:00 -0400 Received: from mx1.redhat.com ([209.132.183.28]:51466 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932756Ab3CTSn7 (ORCPT ); Wed, 20 Mar 2013 14:43:59 -0400 Date: Wed, 20 Mar 2013 15:43:29 -0300 From: Marcelo Tosatti To: Xiao Guangrong Cc: Paolo Bonzini , Gleb Natapov , LKML , KVM Subject: Re: [PATCH 4/5] KVM: MMU: store generation-number into mmio spte Message-ID: <20130320184329.GA3888@amt.cnet> References: <51433D98.4050605@linux.vnet.ibm.com> <51433E43.60900@linux.vnet.ibm.com> <5146F830.1070602@redhat.com> <51470BA1.3060601@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <51470BA1.3060601@linux.vnet.ibm.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1563 Lines: 38 On Mon, Mar 18, 2013 at 08:42:09PM +0800, Xiao Guangrong wrote: > On 03/18/2013 07:19 PM, Paolo Bonzini wrote: > > Il 15/03/2013 16:29, Xiao Guangrong ha scritto: > >> +/* > >> + * spte bits of bit 3 ~ bit 11 are used as low 9 bits of > >> + * generation, the bits of bits 52 ~ bit 61 are used as > >> + * high 12 bits of generation. > >> + */ > > > > High 10 bits. > > Yes, i forgot to update the comments! Thank you, Paolo! > > > > > How often does the generation number change? Especially with Takuya's > > patches, using just 10 bits for the generation might be enough and > > simplifies the code. > > I guess it's only updated when guest is initializing and doing hotplug. > In my origin thought, if the number is big enough that it could not > round on all most case of hotplug, the things introduced by Takuya is > not necessary. But, if you guys want to keep the things, 10 bits should > be enough. :) Since an overflow can happen in normal scenarios (cirrus emulation can delete/add memory slot on legacy mode, with syslinux, for example), it would be good to handle the overflow scenario. It also means bits for generation number can be reduced. Can walk the GPA range being added/moved instead of walking active_mmu_pages (should be much faster since usually its a small slot being added/deleted). -- 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/