[PATCH 09/32] ia64/xen: add a necessary header file to compile include/xen/interface/xen.h

2008-10-14 Thread Isaku Yamahata
Create include/asm-ia64/pvclock-abi.h to compile which includes include/asm-x86/pvclock-abi.h because ia64/xen uses same structure. Hopefully include/asm-x86/pvclock-abi.h would be moved to somewhere more generic. Signed-off-by: Isaku Yamahata [EMAIL PROTECTED] ---

RE: [PATCH 09/32] ia64/xen: add a necessary header file to compile include/xen/interface/xen.h

2008-10-14 Thread Luck, Tony
+++ b/arch/ia64/include/asm/pvclock-abi.h @@ -0,0 +1,5 @@ +/* + * use same structure to x86's + * Hopefully asm-x86/pvclock-abi.h would be moved to somewhere more generic. + */ +#include asm-x86/pvclock-abi.h I will trade out this patch for one that just makes a copy of the x86 include file.

Re: [PATCH 09/32] ia64/xen: add a necessary header file to compile include/xen/interface/xen.h

2008-10-14 Thread Jeremy Fitzhardinge
Luck, Tony wrote: +++ b/arch/ia64/include/asm/pvclock-abi.h @@ -0,0 +1,5 @@ +/* + * use same structure to x86's + * Hopefully asm-x86/pvclock-abi.h would be moved to somewhere more generic. + */ +#include asm-x86/pvclock-abi.h I will trade out this patch for one that just makes a copy

Re: [PATCH 09/32] ia64/xen: add a necessary header file to compile include/xen/interface/xen.h

2008-10-14 Thread Isaku Yamahata
On Tue, Oct 14, 2008 at 02:46:41PM -0700, Luck, Tony wrote: +++ b/arch/ia64/include/asm/pvclock-abi.h @@ -0,0 +1,5 @@ +/* + * use same structure to x86's + * Hopefully asm-x86/pvclock-abi.h would be moved to somewhere more generic. + */ +#include asm-x86/pvclock-abi.h I will trade out