Re: [PATCH v2 09/23] xen/arm: Introduce xen_ulong_t for unsigned long

2012-08-08 Thread Stefano Stabellini
On Tue, 7 Aug 2012, Konrad Rzeszutek Wilk wrote: > On Mon, Aug 06, 2012 at 03:27:12PM +0100, Stefano Stabellini wrote: > > All the original Xen headers have xen_ulong_t as unsigned long type, however > > when they have been imported in Linux, xen_ulong_t has been replaced with > > unsigned long. Th

Re: [PATCH v2 09/23] xen/arm: Introduce xen_ulong_t for unsigned long

2012-08-07 Thread Konrad Rzeszutek Wilk
On Mon, Aug 06, 2012 at 03:27:12PM +0100, Stefano Stabellini wrote: > All the original Xen headers have xen_ulong_t as unsigned long type, however > when they have been imported in Linux, xen_ulong_t has been replaced with > unsigned long. That might work for x86 and ia64 but it does not for arm. >

[PATCH v2 09/23] xen/arm: Introduce xen_ulong_t for unsigned long

2012-08-06 Thread Stefano Stabellini
All the original Xen headers have xen_ulong_t as unsigned long type, however when they have been imported in Linux, xen_ulong_t has been replaced with unsigned long. That might work for x86 and ia64 but it does not for arm. Bring back xen_ulong_t and let each architecture define xen_ulong_t as they