aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/xen/mm.h
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-07-08 22:08:31 +0100
committerKeir Fraser <keir.fraser@citrix.com>2009-07-08 22:08:31 +0100
commit0409e29e2bd9ff5e30cb0bfe5ba49b7aed19ae5e (patch)
treeacc735e24d46926ec3258b2a658fb2cd9ef66c54 /xen/include/xen/mm.h
parent4d5b3e46f1afbe993af97f96e3abd69162faeeeb (diff)
downloadxen-0409e29e2bd9ff5e30cb0bfe5ba49b7aed19ae5e.tar.gz
xen-0409e29e2bd9ff5e30cb0bfe5ba49b7aed19ae5e.tar.bz2
xen-0409e29e2bd9ff5e30cb0bfe5ba49b7aed19ae5e.zip
Replace boot-time free-pages bitmap with a region list.
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Diffstat (limited to 'xen/include/xen/mm.h')
-rw-r--r--xen/include/xen/mm.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/xen/include/xen/mm.h b/xen/include/xen/mm.h
index d00ac0a4bb..8d35ed8645 100644
--- a/xen/include/xen/mm.h
+++ b/xen/include/xen/mm.h
@@ -37,7 +37,6 @@ struct domain;
struct page_info;
/* Boot-time allocator. Turns into generic allocator after bootstrap. */
-paddr_t init_boot_allocator(paddr_t bitmap_start);
void init_boot_pages(paddr_t ps, paddr_t pe);
unsigned long alloc_boot_pages(
unsigned long nr_pfns, unsigned long pfn_align);
@@ -307,9 +306,7 @@ int guest_remove_page(struct domain *d, unsigned long gmfn);
#define RAM_TYPE_RESERVED 0x00000002
#define RAM_TYPE_UNUSABLE 0x00000004
#define RAM_TYPE_ACPI 0x00000008
-/* Returns TRUE if the whole page at @mfn is of the requested RAM type(s) above. */
+/* TRUE if the whole page at @mfn is of the requested RAM type(s) above. */
int page_is_ram_type(unsigned long mfn, unsigned long mem_type);
-extern unsigned long *alloc_bitmap; /* for vmcoreinfo */
-
#endif /* __XEN_MM_H__ */