#include <asm/xen/hypercall.h>
#include <xen/interface/memory.h>
#include <xen/mem-reservation.h>
#include <linux/moduleparam.h>
bool __read_mostly xen_scrub_pages = … IS_ENABLED(…);
core_param(…);
#define EXTENT_ORDER …
#ifdef CONFIG_XEN_HAVE_PVMMU
void __xenmem_reservation_va_mapping_update(unsigned long count,
struct page **pages,
xen_pfn_t *frames)
{ … }
EXPORT_SYMBOL_GPL(…);
void __xenmem_reservation_va_mapping_reset(unsigned long count,
struct page **pages)
{ … }
EXPORT_SYMBOL_GPL(…);
#endif
int xenmem_reservation_increase(int count, xen_pfn_t *frames)
{ … }
EXPORT_SYMBOL_GPL(…);
int xenmem_reservation_decrease(int count, xen_pfn_t *frames)
{ … }
EXPORT_SYMBOL_GPL(…);