blob: 5d7a6db54a8c91064a1255e81834c31ce44bbfb1 [file] [log] [blame]
Isaku Yamahatae04d0d02008-04-02 10:53:55 -07001#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
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01008void xen_pre_suspend(void);
9void xen_post_suspend(int suspend_cancelled);
10
11void xen_mm_pin_all(void);
12void xen_mm_unpin_all(void);
13
14void xen_time_suspend(void);
15void xen_time_resume(void);
16
Isaku Yamahatae04d0d02008-04-02 10:53:55 -070017#endif /* INCLUDE_XEN_OPS_H */