Re: [PATCH][v2 1/3] x86: Export FPU API for KVM use

2010-05-17 Thread Avi Kivity
On 05/17/2010 12:08 PM, Sheng Yang wrote: Also add some constants. +++ b/arch/x86/kernel/process.c @@ -28,6 +28,7 @@ unsigned long idle_nomwait; EXPORT_SYMBOL(idle_nomwait); struct kmem_cache *task_xstate_cachep; +EXPORT_SYMBOL(task_xstate_cachep); int arch_dup_task_struct(struct

Re: [PATCH][v2 1/3] x86: Export FPU API for KVM use

2010-05-17 Thread Sheng Yang
On Monday 17 May 2010 17:19:02 Avi Kivity wrote: On 05/17/2010 12:08 PM, Sheng Yang wrote: Also add some constants. +++ b/arch/x86/kernel/process.c @@ -28,6 +28,7 @@ unsigned long idle_nomwait; EXPORT_SYMBOL(idle_nomwait); struct kmem_cache *task_xstate_cachep;

[PATCH][v2 1/3] x86: Export FPU API for KVM use

2010-05-17 Thread Sheng Yang
Also add some constants. Signed-off-by: Sheng Yang sh...@linux.intel.com --- arch/x86/include/asm/i387.h |2 ++ arch/x86/include/asm/xsave.h |3 +++ arch/x86/kernel/i387.c |3 ++- arch/x86/kernel/process.c|1 + 4 files changed, 8 insertions(+), 1 deletions(-) diff