aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/include
diff options
context:
space:
mode:
authorMatthew Fioravante <matthew.fioravante@jhuapl.edu>2012-10-08 14:36:30 +0100
committerMatthew Fioravante <matthew.fioravante@jhuapl.edu>2012-10-08 14:36:30 +0100
commitb8902baf80d75b7f5832dc435a868dfcc4d1f36f (patch)
treef278a06f47ae8bbbef23266a9684a94a37c63674 /extras/mini-os/include
parent7ab9bbf9f8b922a25eb3d37ff5fd9b6a730bf85c (diff)
downloadxen-b8902baf80d75b7f5832dc435a868dfcc4d1f36f.tar.gz
xen-b8902baf80d75b7f5832dc435a868dfcc4d1f36f.tar.bz2
xen-b8902baf80d75b7f5832dc435a868dfcc4d1f36f.zip
minios: Disable the mfn_is_ram() check, it doesn't work correctly on all systems
This patch disables the mfn_is_ram check in mini-os. The current check is insufficient and fails on some systems with larger than 4gb memory. Signed-off-by: Matthew Fioravante <matthew.fioravante@jhuapl.edu> Acked-by: Samuel Thibault <samuel.thibault@ens-lyons.org> Committed-by: Ian Campbell <ian.campbell@citrix.com>
Diffstat (limited to 'extras/mini-os/include')
-rw-r--r--extras/mini-os/include/x86/arch_mm.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/extras/mini-os/include/x86/arch_mm.h b/extras/mini-os/include/x86/arch_mm.h
index a95632ad49..23cfca7bfe 100644
--- a/extras/mini-os/include/x86/arch_mm.h
+++ b/extras/mini-os/include/x86/arch_mm.h
@@ -229,6 +229,5 @@ static __inline__ paddr_t machine_to_phys(maddr_t machine)
#define do_map_zero(start, n) do_map_frames(start, &mfn_zero, n, 0, 0, DOMID_SELF, NULL, L1_PROT_RO)
pgentry_t *need_pgt(unsigned long addr);
-int mfn_is_ram(unsigned long mfn);
#endif /* _ARCH_MM_H_ */