From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Grall Subject: Re: [PATCH v2 04/10] xen/arm: Store p2m type in each page of the guest Date: Tue, 10 Dec 2013 13:50:15 +0000 Message-ID: <52A71C17.1070506@linaro.org> References: <1386560047-17500-1-git-send-email-julien.grall@linaro.org> <1386560047-17500-5-git-send-email-julien.grall@linaro.org> <1386608007.7812.68.camel@kazak.uk.xensource.com> <52A67486.4020702@linaro.org> <1386668269.11925.12.camel@kazak.uk.xensource.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta14.messagelabs.com ([193.109.254.103]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1VqNhb-0005mO-7g for xen-devel@lists.xenproject.org; Tue, 10 Dec 2013 13:50:19 +0000 Received: by mail-wi0-f177.google.com with SMTP id cc10so5341866wib.4 for ; Tue, 10 Dec 2013 05:50:17 -0800 (PST) In-Reply-To: <1386668269.11925.12.camel@kazak.uk.xensource.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Ian Campbell Cc: xen-devel@lists.xenproject.org, tim@xen.org, stefano.stabellini@citrix.com, patches@linaro.org List-Id: xen-devel@lists.xenproject.org On 12/10/2013 09:37 AM, Ian Campbell wrote: > On Tue, 2013-12-10 at 01:55 +0000, Julien Grall wrote: >> On 12/09/2013 04:53 PM, Ian Campbell wrote: >>> On Mon, 2013-12-09 at 03:34 +0000, Julien Grall wrote: >>>> + BUILD_BUG_ON(p2m_max_real_type > (2 << 4)); >>> >>> 2<<4 is 32. >>> >>> I think you want either 1<<4, 2^4 or just 16 (my preference is 16). And >> >> Right. >> >>> I think it should be >= since the valid values are 0..15 inclusive. >> >> No, because p2m_max_real_type won't be store in the p2m, so we can have >> 16 values [0..15] and p2m_max_real_type will be the 17th (ie 16). > > If p2m_max_real_type will be the 17th (ie 16) then the check needs to be > p2m_max_real_type >= 16. No because p2m_max_real_type = 16 is valid. Which is invalid is foo = 16 and p2m_max_real_type = 17. -- Julien Grall