Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.1 31 lines 852 B view raw
1#ifndef INCLUDE_XEN_OPS_H 2#define INCLUDE_XEN_OPS_H 3 4#include <linux/percpu.h> 5 6DECLARE_PER_CPU(struct vcpu_info *, xen_vcpu); 7 8void xen_arch_pre_suspend(void); 9void xen_arch_post_suspend(int suspend_cancelled); 10void xen_arch_hvm_post_suspend(int suspend_cancelled); 11 12void xen_mm_pin_all(void); 13void xen_mm_unpin_all(void); 14 15void xen_timer_resume(void); 16void xen_arch_resume(void); 17 18int xen_setup_shutdown_event(void); 19 20extern unsigned long *xen_contiguous_bitmap; 21int xen_create_contiguous_region(unsigned long vstart, unsigned int order, 22 unsigned int address_bits); 23 24void xen_destroy_contiguous_region(unsigned long vstart, unsigned int order); 25 26int xen_remap_domain_mfn_range(struct vm_area_struct *vma, 27 unsigned long addr, 28 unsigned long mfn, int nr, 29 pgprot_t prot, unsigned domid); 30 31#endif /* INCLUDE_XEN_OPS_H */