[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] xen: xen_ulong_t substitution
# HG changeset patch # User Stefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx> # Date 1350488629 -3600 # Node ID a324eea3bbc87cdfb314ac4d09c67b58d18c3f4a # Parent 980863b9fa4bb5c71a8831d7030816bd5cd8de57 xen: xen_ulong_t substitution There is still an unwanted unsigned long in the xen public interface: replace it with xen_ulong_t. Also typedef xen_ulong_t to uint64_t on ARM. Signed-off-by: Stefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx> Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Acked-by: Keir Fraser <keir@xxxxxxx> Committed-by: Ian Campbell <ian.campbell@xxxxxxxxxx> --- diff -r 980863b9fa4b -r a324eea3bbc8 tools/python/xen/lowlevel/xc/xc.c --- a/tools/python/xen/lowlevel/xc/xc.c Wed Oct 17 16:43:48 2012 +0100 +++ b/tools/python/xen/lowlevel/xc/xc.c Wed Oct 17 16:43:49 2012 +0100 @@ -1439,7 +1439,7 @@ static PyObject *pyxc_xeninfo(XcObject * if ( xc_version(self->xc_handle, XENVER_commandline, &xen_commandline) != 0 ) return pyxc_error_to_exception(self->xc_handle); - snprintf(str, sizeof(str), "virt_start=0x%lx", p_parms.virt_start); + snprintf(str, sizeof(str), "virt_start=0x%"PRI_xen_ulong, p_parms.virt_start); xen_pagesize = xc_version(self->xc_handle, XENVER_pagesize, NULL); if (xen_pagesize < 0 ) diff -r 980863b9fa4b -r a324eea3bbc8 xen/include/public/arch-arm.h --- a/xen/include/public/arch-arm.h Wed Oct 17 16:43:48 2012 +0100 +++ b/xen/include/public/arch-arm.h Wed Oct 17 16:43:49 2012 +0100 @@ -122,7 +122,8 @@ typedef uint64_t xen_pfn_t; /* Only one. All other VCPUS must use VCPUOP_register_vcpu_info */ #define XEN_LEGACY_MAX_VCPUS 1 -typedef uint32_t xen_ulong_t; +typedef uint64_t xen_ulong_t; +#define PRI_xen_ulong PRIx64 struct vcpu_guest_context { #define _VGCF_online 0 diff -r 980863b9fa4b -r a324eea3bbc8 xen/include/public/arch-x86/xen.h --- a/xen/include/public/arch-x86/xen.h Wed Oct 17 16:43:48 2012 +0100 +++ b/xen/include/public/arch-x86/xen.h Wed Oct 17 16:43:49 2012 +0100 @@ -85,6 +85,7 @@ typedef unsigned long xen_pfn_t; #ifndef __ASSEMBLY__ typedef unsigned long xen_ulong_t; +#define PRI_xen_ulong "lx" /* * ` enum neg_errnoval diff -r 980863b9fa4b -r a324eea3bbc8 xen/include/public/version.h --- a/xen/include/public/version.h Wed Oct 17 16:43:48 2012 +0100 +++ b/xen/include/public/version.h Wed Oct 17 16:43:49 2012 +0100 @@ -28,6 +28,8 @@ #ifndef __XEN_PUBLIC_VERSION_H__ #define __XEN_PUBLIC_VERSION_H__ +#include "xen.h" + /* NB. All ops return zero on success, except XENVER_{version,pagesize} */ /* arg == NULL; returns major:minor (16:16). */ @@ -58,7 +60,7 @@ typedef char xen_changeset_info_t[64]; #define XENVER_platform_parameters 5 struct xen_platform_parameters { - unsigned long virt_start; + xen_ulong_t virt_start; }; typedef struct xen_platform_parameters xen_platform_parameters_t; _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |