aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/memory.c
diff options
context:
space:
mode:
Diffstat (limited to 'xen/common/memory.c')
-rw-r--r--xen/common/memory.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xen/common/memory.c b/xen/common/memory.c
index 8779d6bd7d..5bcb035086 100644
--- a/xen/common/memory.c
+++ b/xen/common/memory.c
@@ -188,7 +188,7 @@ int guest_remove_page(struct domain *d, unsigned long gmfn)
return 0;
}
-#ifdef CONFIG_X86_64
+#ifdef CONFIG_X86
if ( p2m_is_shared(p2mt) )
{
/* Unshare the page, bail out on error. We unshare because
@@ -205,7 +205,7 @@ int guest_remove_page(struct domain *d, unsigned long gmfn)
mfn = mfn_x(get_gfn_query_unlocked(d, gmfn, &p2mt));
ASSERT(!p2m_is_shared(p2mt));
}
-#endif /* CONFIG_X86_64 */
+#endif /* CONFIG_X86 */
page = mfn_to_page(mfn);
if ( unlikely(!get_page(page, d)) )