[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH v2 2/4] xen/arm: Add macro ALIGN
On Thu, 2013-09-26 at 13:56 +0100, Julien Grall wrote: > diff --git a/xen/include/asm-arm/config.h b/xen/include/asm-arm/config.h > index 2cea1ba..35f3b29 100644 > --- a/xen/include/asm-arm/config.h > +++ b/xen/include/asm-arm/config.h > @@ -186,6 +186,10 @@ > #define STACK_SIZE (PAGE_SIZE << STACK_ORDER) > > #ifndef __ASSEMBLY__ > +#define ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1)) Seems like there ought to be a place under include/xen where this would fit. xen/include/xen/lib.h I reckon. > +#endif > + > +#ifndef __ASSEMBLY__ > extern unsigned long xen_phys_start; > extern unsigned long xenheap_phys_end; > extern unsigned long frametable_virt_end; _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |