From: Konrad Rzeszutek Wilk Date: Wed, 10 Oct 2012 17:30:47 +0000 (-0400) Subject: xen/bootup: allow read_tscp call for Xen PV guests. X-Git-Tag: v2.6.34.15~101 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7c43c08e17266918c10816708fbce8fe944f73ee;p=thirdparty%2Fkernel%2Fstable.git xen/bootup: allow read_tscp call for Xen PV guests. commit cd0608e71e9757f4dae35bcfb4e88f4d1a03a8ab upstream. The hypervisor will trap it. However without this patch, we would crash as the .read_tscp is set to NULL. This patch fixes it and sets it to the native_read_tscp call. Signed-off-by: Konrad Rzeszutek Wilk Signed-off-by: Paul Gortmaker --- diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c index 25d787c17ad83..7fa0dc02b9396 100644 --- a/arch/x86/xen/enlighten.c +++ b/arch/x86/xen/enlighten.c @@ -952,6 +952,8 @@ static const struct pv_cpu_ops xen_cpu_ops __initdata = { .read_tsc = native_read_tsc, .read_pmc = native_read_pmc, + .read_tscp = native_read_tscp, + .iret = xen_iret, .irq_enable_sysexit = xen_sysexit, #ifdef CONFIG_X86_64