aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxc/xc_core_x86.c
diff options
context:
space:
mode:
authorKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>2011-06-28 18:15:44 +0100
committerKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>2011-06-28 18:15:44 +0100
commit7e9ee87b3ec2158a9ac4e0dda838f177dcde92dd (patch)
tree20487bcaf18e1034fafbf5fb952f9918993e297f /tools/libxc/xc_core_x86.c
parent98883d0bb77a84111d2f5a52b3e5870d9e7054a0 (diff)
downloadxen-7e9ee87b3ec2158a9ac4e0dda838f177dcde92dd.tar.gz
xen-7e9ee87b3ec2158a9ac4e0dda838f177dcde92dd.tar.bz2
xen-7e9ee87b3ec2158a9ac4e0dda838f177dcde92dd.zip
libxc: Squash xc_e820.h (and delete) into xenctrl.h
.. as there is no need to keep that internal header file anymore. We export two functions xc_domain_[set|get]_memory_map which depend on the 'struct e820entry' defined in 'xc_e820.h'. We move the contents of the 'xc_e820.h' to the 'xenctrl.h' fixing compiler errors when applications outside the Xen tree are trying to compile against the libraries. Tested-by: Daniel Castro <evil.dani@gmail.com> Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> Committed-by: Ian Jackson <ian.jackson@eu.citrix.com>
Diffstat (limited to 'tools/libxc/xc_core_x86.c')
-rw-r--r--tools/libxc/xc_core_x86.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/libxc/xc_core_x86.c b/tools/libxc/xc_core_x86.c
index 3c5d430369..43bf17616c 100644
--- a/tools/libxc/xc_core_x86.c
+++ b/tools/libxc/xc_core_x86.c
@@ -20,7 +20,7 @@
#include "xg_private.h"
#include "xc_core.h"
-#include "xc_e820.h"
+#include <xen/hvm/e820.h>
#define GET_FIELD(_p, _f) ((dinfo->guest_width==8) ? ((_p)->x64._f) : ((_p)->x32._f))