From: kaf24@firebug.cl.cam.ac.uk Date: Sat, 17 Jun 2006 07:31:53 +0000 (+0100) Subject: [XEN] Use correct xen_pfn_t type in implementation of XENMEM_exchange. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15921^2~52 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=38b1807fa437f22d1bffafb01d9c41a6343f3676;p=xen.git [XEN] Use correct xen_pfn_t type in implementation of XENMEM_exchange. Avoids compile errors on ppc. Signed-off-by: Hollis Blanchard --- diff --git a/xen/common/memory.c b/xen/common/memory.c index 9b0c19ce03..1fd8466a4d 100644 --- a/xen/common/memory.c +++ b/xen/common/memory.c @@ -282,7 +282,7 @@ memory_exchange(XEN_GUEST_HANDLE(xen_memory_exchange_t) arg) LIST_HEAD(in_chunk_list); LIST_HEAD(out_chunk_list); unsigned long in_chunk_order, out_chunk_order; - unsigned long gpfn, gmfn, mfn; + xen_pfn_t gpfn, gmfn, mfn; unsigned long i, j, k; unsigned int memflags = 0; long rc = 0;