Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755548AbbGPOU5 (ORCPT ); Thu, 16 Jul 2015 10:20:57 -0400 Received: from smtp02.citrix.com ([66.165.176.63]:16585 "EHLO SMTP02.CITRIX.COM" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755515AbbGPOUz (ORCPT ); Thu, 16 Jul 2015 10:20:55 -0400 X-IronPort-AV: E=Sophos;i="5.15,488,1432598400"; d="scan'208";a="284728381" Date: Thu, 16 Jul 2015 15:19:31 +0100 From: Stefano Stabellini X-X-Sender: sstabellini@kaball.uk.xensource.com To: Julien Grall CC: , , , , , Konrad Rzeszutek Wilk , Boris Ostrovsky , "David Vrabel" Subject: Re: [PATCH v2 01/20] xen: Add Xen specific page definition In-Reply-To: <1436474552-31789-2-git-send-email-julien.grall@citrix.com> Message-ID: References: <1436474552-31789-1-git-send-email-julien.grall@citrix.com> <1436474552-31789-2-git-send-email-julien.grall@citrix.com> User-Agent: Alpine 2.02 (DEB 1266 2009-07-14) MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" X-DLP: MIA2 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2843 Lines: 85 On Thu, 9 Jul 2015, Julien Grall wrote: > The Xen hypercall interface is always using 4K page granularity on ARM > and x86 architecture. > > With the incoming support of 64K page granularity for ARM64 guest, it > won't be possible to re-use the Linux page definition in Xen drivers. > > Introduce Xen page definition helpers based on the Linux page > definition. They have exactly the same name but prefixed with > XEN_/xen_ prefix. > > Also modify page_to_pfn to use new Xen page definition. > > Signed-off-by: Julien Grall > Cc: Konrad Rzeszutek Wilk > Cc: Boris Ostrovsky > Cc: David Vrabel > --- > I'm wondering if we should drop page_to_pfn has the macro will likely > misuse when Linux is using 64KB page granularity. > > Changes in v2: > - Add XEN_PFN_UP > - Add a comment describing the behavior of page_to_pfn > --- > include/xen/page.h | 21 ++++++++++++++++++++- > 1 file changed, 20 insertions(+), 1 deletion(-) > > diff --git a/include/xen/page.h b/include/xen/page.h > index c5ed20b..8ebd37b 100644 > --- a/include/xen/page.h > +++ b/include/xen/page.h > @@ -1,11 +1,30 @@ > #ifndef _XEN_PAGE_H > #define _XEN_PAGE_H > > +#include > + > +/* The hypercall interface supports only 4KB page */ > +#define XEN_PAGE_SHIFT 12 > +#define XEN_PAGE_SIZE (_AC(1,UL) << XEN_PAGE_SHIFT) > +#define XEN_PAGE_MASK (~(XEN_PAGE_SIZE-1)) > +#define xen_offset_in_page(p) ((unsigned long)(p) & ~XEN_PAGE_MASK) > +#define xen_pfn_to_page(pfn) \ I think it would be clearer if you called the parameter "xen_pfn" instead of "pfn". > + ((pfn_to_page(((unsigned long)(pfn) << XEN_PAGE_SHIFT) >> PAGE_SHIFT))) > +#define xen_page_to_pfn(page) \ > + (((page_to_pfn(page)) << PAGE_SHIFT) >> XEN_PAGE_SHIFT) It would be nice to have a comment: /* assume PAGE_SIZE is a multiple of XEN_PAGE_SIZE */ > +#define XEN_PFN_PER_PAGE (PAGE_SIZE / XEN_PAGE_SIZE) > + > +#define XEN_PFN_DOWN(x) ((x) >> XEN_PAGE_SHIFT) > +#define XEN_PFN_UP(x) (((x) + XEN_PAGE_SIZE-1) >> XEN_PAGE_SHIFT) > +#define XEN_PFN_PHYS(x) ((phys_addr_t)(x) << XEN_PAGE_SHIFT) > + > #include > > +/* Return the MFN associated to the first 4KB of the page */ > static inline unsigned long page_to_mfn(struct page *page) > { > - return pfn_to_mfn(page_to_pfn(page)); > + return pfn_to_mfn(xen_page_to_pfn(page)); > } > > struct xen_memory_region { Aside from the two minor suggestions: Reviewed-by: Stefano Stabellini -- 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/