xen-ops.h 349 B

1234567891011121314151617
  1. #ifndef INCLUDE_XEN_OPS_H
  2. #define INCLUDE_XEN_OPS_H
  3. #include <linux/percpu.h>
  4. DECLARE_PER_CPU(struct vcpu_info *, xen_vcpu);
  5. void xen_pre_suspend(void);
  6. void xen_post_suspend(int suspend_cancelled);
  7. void xen_mm_pin_all(void);
  8. void xen_mm_unpin_all(void);
  9. void xen_timer_resume(void);
  10. void xen_arch_resume(void);
  11. #endif /* INCLUDE_XEN_OPS_H */