From: Bob Liu Date: Fri, 6 Dec 2013 14:58:00 +0000 (+0100) Subject: tmem: fix public header file X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~5798 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=cc9a0f989f04f01c59c5d90748092811a760bd84;p=xen.git tmem: fix public header file Commit 006a687ba4de74d7933c09b43872abc19f126c63 dropped typedef tmem_cli_mfn_t from public tmem.h which may cause some problem. This patch added tmem_cli_mfn_t back with #ifdef __XEN_INTERFACE_VERSION__ around. Signed-off-by: Bob Liu Acked-by: Konrad Rzeszutek Wilk --- diff --git a/xen/include/public/tmem.h b/xen/include/public/tmem.h index dd685ee20f..5eb2fb467f 100644 --- a/xen/include/public/tmem.h +++ b/xen/include/public/tmem.h @@ -95,6 +95,9 @@ #ifndef __ASSEMBLY__ +#if __XEN_INTERFACE_VERSION__ < 0x00040400 +typedef xen_pfn_t tmem_cli_mfn_t; +#endif typedef XEN_GUEST_HANDLE(char) tmem_cli_va_t; struct tmem_op { uint32_t cmd;