aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxc/xc_core.h
diff options
context:
space:
mode:
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-08-30 15:00:21 +0100
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-08-30 15:00:21 +0100
commit75dabf614d9c2b0884352ae20861a807f09af022 (patch)
treeb01d27f46b767565fb015bd2f242b28cf611a395 /tools/libxc/xc_core.h
parent0e0204500eb2bb9499ca6ff0a60ccf7e3612c917 (diff)
downloadxen-75dabf614d9c2b0884352ae20861a807f09af022.tar.gz
xen-75dabf614d9c2b0884352ae20861a807f09af022.tar.bz2
xen-75dabf614d9c2b0884352ae20861a807f09af022.zip
Introduce xc_core_arch_gpfn_may_present() hook.
On ia64 trying to map a foreign domain page which isn't allocated cause annoying warning message. xm dump-core results in too many warnings. With this hook, ia64 dump-core can suprress warning. Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Diffstat (limited to 'tools/libxc/xc_core.h')
-rw-r--r--tools/libxc/xc_core.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/libxc/xc_core.h b/tools/libxc/xc_core.h
index 278be895dd..c15729e5af 100644
--- a/tools/libxc/xc_core.h
+++ b/tools/libxc/xc_core.h
@@ -133,8 +133,10 @@ struct xc_core_memory_map {
};
typedef struct xc_core_memory_map xc_core_memory_map_t;
int xc_core_arch_auto_translated_physmap(const xc_dominfo_t *info);
-int xc_core_arch_memory_map_get(int xc_handle, xc_dominfo_t *info,
- shared_info_t *live_shinfo,
+struct xc_core_arch_context;
+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_core_memory_map_t **mapp,
unsigned int *nr_entries);
int xc_core_arch_map_p2m(int xc_handle, xc_dominfo_t *info,