Commit a8b74583 authored by Ian Campbell's avatar Ian Campbell Committed by Stefano Stabellini

xen: switch to new schedop hypercall by default.

Rename old interface to sched_op_compat and rename sched_op_new to
simply sched_op.
Signed-off-by: default avatarIan Campbell <ian.campbell@citrix.com>
Reviewed-by: default avatarKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
parent 8e15597f
...@@ -287,7 +287,7 @@ HYPERVISOR_fpu_taskswitch(int set) ...@@ -287,7 +287,7 @@ HYPERVISOR_fpu_taskswitch(int set)
static inline int static inline int
HYPERVISOR_sched_op(int cmd, void *arg) HYPERVISOR_sched_op(int cmd, void *arg)
{ {
return _hypercall2(int, sched_op_new, cmd, arg); return _hypercall2(int, sched_op, cmd, arg);
} }
static inline long static inline long
...@@ -432,7 +432,7 @@ HYPERVISOR_suspend(unsigned long start_info_mfn) ...@@ -432,7 +432,7 @@ HYPERVISOR_suspend(unsigned long start_info_mfn)
* hypercall calling convention this is the third hypercall * hypercall calling convention this is the third hypercall
* argument, which is start_info_mfn here. * argument, which is start_info_mfn here.
*/ */
return _hypercall3(int, sched_op_new, SCHEDOP_shutdown, &r, start_info_mfn); return _hypercall3(int, sched_op, SCHEDOP_shutdown, &r, start_info_mfn);
} }
static inline int static inline int
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
#define __HYPERVISOR_stack_switch 3 #define __HYPERVISOR_stack_switch 3
#define __HYPERVISOR_set_callbacks 4 #define __HYPERVISOR_set_callbacks 4
#define __HYPERVISOR_fpu_taskswitch 5 #define __HYPERVISOR_fpu_taskswitch 5
#define __HYPERVISOR_sched_op 6 #define __HYPERVISOR_sched_op_compat 6
#define __HYPERVISOR_dom0_op 7 #define __HYPERVISOR_dom0_op 7
#define __HYPERVISOR_set_debugreg 8 #define __HYPERVISOR_set_debugreg 8
#define __HYPERVISOR_get_debugreg 9 #define __HYPERVISOR_get_debugreg 9
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
#define __HYPERVISOR_mmuext_op 26 #define __HYPERVISOR_mmuext_op 26
#define __HYPERVISOR_acm_op 27 #define __HYPERVISOR_acm_op 27
#define __HYPERVISOR_nmi_op 28 #define __HYPERVISOR_nmi_op 28
#define __HYPERVISOR_sched_op_new 29 #define __HYPERVISOR_sched_op 29
#define __HYPERVISOR_callback_op 30 #define __HYPERVISOR_callback_op 30
#define __HYPERVISOR_xenoprof_op 31 #define __HYPERVISOR_xenoprof_op 31
#define __HYPERVISOR_event_channel_op 32 #define __HYPERVISOR_event_channel_op 32
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment