KUWAMURA Shin''ya
2010-Jun-25 07:32 UTC
[Xen-devel] [PATCH] tools: fix ia64 build for 21483:779c0ef9682c
Hi, This patch fixes ia64 by the following method: - rename xc_handle xch - rename guest_xc xch - add xc_interface *xch to arguments of some functions - replace xc_dom_printf with macros Signed-off-by: KUWAMURA Shin''ya <kuwa@jp.fujitsu.com> -- KUWAMURA Shin''ya _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Ian Jackson
2010-Jun-25 14:26 UTC
Re: [Xen-devel] [PATCH] tools: fix ia64 build for 21483:779c0ef9682c
KUWAMURA Shin''ya writes ("[Xen-devel] [PATCH] tools: fix ia64 build for 21483:779c0ef9682c"):> This patch fixes ia64 by the following method: > - rename xc_handle xch > - rename guest_xc xch > - add xc_interface *xch to arguments of some functions > - replace xc_dom_printf with macrosThanks. It looks reasonable to me, although I''m not quite sure about this part: diff -r a24dbfcbdf69 -r 9480d90c4a1a xen/arch/ia64/xen/dom_fw_domu.c --- a/xen/arch/ia64/xen/dom_fw_domu.c Tue Jun 22 07:19:38 2010 +0100 +++ b/xen/arch/ia64/xen/dom_fw_domu.c Thu Jun 17 16:01:53 2010 +0900 @@ -47,7 +47,11 @@ #include <asm/dom_fw.h> #include <asm/dom_fw_domu.h> +#ifdef __XEN__ void efi_systable_init_domu(struct fw_tables *tables) +#else +void efi_systable_init_domu(xc_interface *xch, struct fw_tables *tables) +#endif Keir, do you have an opinion ? If you''re happy with this I''ll apply the whole patch to the tools tree, even though it contains some changes in xen/include/*64*. Alternatively, please do apply the whole patch to your tree right away. Or, in other words: Acked-by: Ian Jackson <ian.jackson@eu.citrix.com> Ian. _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Keir Fraser
2010-Jun-25 14:29 UTC
Re: [Xen-devel] [PATCH] tools: fix ia64 build for 21483:779c0ef9682c
On 25/06/2010 15:26, "Ian Jackson" <Ian.Jackson@eu.citrix.com> wrote:> Keir, do you have an opinion ? If you''re happy with this I''ll apply > the whole patch to the tools tree, even though it contains some > changes in xen/include/*64*. Alternatively, please do apply the whole > patch to your tree right away.It''s fine by me. Please apply it to your tree. -- Keir _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel