diff options
Diffstat (limited to 'arch/x86/include/asm/paravirt.h')
| -rw-r--r-- | arch/x86/include/asm/paravirt.h | 22 | 
1 files changed, 11 insertions, 11 deletions
diff --git a/arch/x86/include/asm/paravirt.h b/arch/x86/include/asm/paravirt.h index a53da004e08..4fb37c8a083 100644 --- a/arch/x86/include/asm/paravirt.h +++ b/arch/x86/include/asm/paravirt.h @@ -56,6 +56,7 @@ struct desc_ptr;  struct tss_struct;  struct mm_struct;  struct desc_struct; +struct task_struct;  /*   * Wrapper type for pointers to code which uses the non-standard @@ -203,7 +204,8 @@ struct pv_cpu_ops {  	void (*swapgs)(void); -	struct pv_lazy_ops lazy_mode; +	void (*start_context_switch)(struct task_struct *prev); +	void (*end_context_switch)(struct task_struct *next);  };  struct pv_irq_ops { @@ -1399,25 +1401,23 @@ enum paravirt_lazy_mode {  };  enum paravirt_lazy_mode paravirt_get_lazy_mode(void); -void paravirt_enter_lazy_cpu(void); -void paravirt_leave_lazy_cpu(void); +void paravirt_start_context_switch(struct task_struct *prev); +void paravirt_end_context_switch(struct task_struct *next); +  void paravirt_enter_lazy_mmu(void);  void paravirt_leave_lazy_mmu(void); -void paravirt_leave_lazy(enum paravirt_lazy_mode mode); -#define  __HAVE_ARCH_ENTER_LAZY_CPU_MODE -static inline void arch_enter_lazy_cpu_mode(void) +#define  __HAVE_ARCH_START_CONTEXT_SWITCH +static inline void arch_start_context_switch(struct task_struct *prev)  { -	PVOP_VCALL0(pv_cpu_ops.lazy_mode.enter); +	PVOP_VCALL1(pv_cpu_ops.start_context_switch, prev);  } -static inline void arch_leave_lazy_cpu_mode(void) +static inline void arch_end_context_switch(struct task_struct *next)  { -	PVOP_VCALL0(pv_cpu_ops.lazy_mode.leave); +	PVOP_VCALL1(pv_cpu_ops.end_context_switch, next);  } -void arch_flush_lazy_cpu_mode(void); -  #define  __HAVE_ARCH_ENTER_LAZY_MMU_MODE  static inline void arch_enter_lazy_mmu_mode(void)  {  |