[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] [IA64] fix compilation error caused by 19046:ecf603780f56
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1232106441 0 # Node ID 0ab57e6e440a1b3d99c6ce18d0a390bb377745b3 # Parent 71e0b8adeb1f71d0055fabba0e97a4bdbf594c72 [IA64] fix compilation error caused by 19046:ecf603780f56 This patch fixes the following compilation error adjusting function prototypes. > xc_core_ia64.c:176: error: conflicting types for 'xc_core_arch_memory_map_get' > xc_core.h:141: error: previous declaration of 'xc_core_arch_memory_map_get' was here > xc_core_ia64.c:241: error: conflicting types for 'xc_core_arch_map_p2m' > xc_core.h:144: error: previous declaration of 'xc_core_arch_map_p2m' was here Signed-off-by: Isaku Yamahata <yamahata@xxxxxxxxxxxxx> --- tools/libxc/xc_core_ia64.c | 15 ++++++++------- 1 files changed, 8 insertions(+), 7 deletions(-) diff -r 71e0b8adeb1f -r 0ab57e6e440a tools/libxc/xc_core_ia64.c --- a/tools/libxc/xc_core_ia64.c Fri Jan 16 11:46:51 2009 +0000 +++ b/tools/libxc/xc_core_ia64.c Fri Jan 16 11:47:21 2009 +0000 @@ -68,7 +68,7 @@ xc_core_arch_auto_translated_physmap(con /* see setup_guest() @ xc_linux_build.c */ static int memory_map_get_old_domu(int xc_handle, xc_dominfo_t *info, - shared_info_t *live_shinfo, + shared_info_any_t *live_shinfo, xc_core_memory_map_t **mapp, unsigned int *nr_entries) { xc_core_memory_map_t *map = NULL; @@ -96,7 +96,7 @@ out: /* see setup_guest() @ xc_ia64_hvm_build.c */ static int memory_map_get_old_hvm(int xc_handle, xc_dominfo_t *info, - shared_info_t *live_shinfo, + shared_info_any_t *live_shinfo, xc_core_memory_map_t **mapp, unsigned int *nr_entries) { const xc_core_memory_map_t gfw_map[] = { @@ -155,7 +155,7 @@ out: static int memory_map_get_old(int xc_handle, xc_dominfo_t *info, - shared_info_t *live_shinfo, + shared_info_any_t *live_shinfo, xc_core_memory_map_t **mapp, unsigned int *nr_entries) { if ( info->hvm ) @@ -170,7 +170,8 @@ int int xc_core_arch_memory_map_get(int xc_handle, struct xc_core_arch_context *arch_ctxt, - xc_dominfo_t *info, shared_info_t *live_shinfo, + xc_dominfo_t *info, + shared_info_any_t *live_shinfo, xc_core_memory_map_t **mapp, unsigned int *nr_entries) { @@ -190,8 +191,8 @@ xc_core_arch_memory_map_get(int xc_handl } /* copy before use in case someone updating them */ - if (xc_ia64_copy_memmap(xc_handle, info->domid, live_shinfo, &memmap_info, - NULL)) { + if (xc_ia64_copy_memmap(xc_handle, info->domid, &live_shinfo->s, + &memmap_info, NULL)) { goto old; } @@ -236,7 +237,7 @@ old: int xc_core_arch_map_p2m(int xc_handle, unsigned int guest_width, xc_dominfo_t *info, - shared_info_t *live_shinfo, xen_pfn_t **live_p2m, + shared_info_any_t *live_shinfo, xen_pfn_t **live_p2m, unsigned long *pfnp) { /* _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |