From: Konrad Rzeszutek Wilk Date: Thu, 4 Aug 2011 22:42:10 +0000 (-0400) Subject: xen/trace: Fix compile error when CONFIG_XEN_PRIVILEGED_GUEST is not set X-Git-Tag: v3.1-rc3~2^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c00c8aa2d976e9ed1d12a57b42d6e9b27efb7abe;p=platform%2Fkernel%2Flinux-exynos.git xen/trace: Fix compile error when CONFIG_XEN_PRIVILEGED_GUEST is not set with CONFIG_XEN and CONFIG_FTRACE set we get this: arch/x86/xen/trace.c:22: error: ‘__HYPERVISOR_console_io’ undeclared here (not in a function) arch/x86/xen/trace.c:22: error: array index in initializer not of integer type arch/x86/xen/trace.c:22: error: (near initialization for ‘xen_hypercall_names’) arch/x86/xen/trace.c:23: error: ‘__HYPERVISOR_physdev_op_compat’ undeclared here (not in a function) Issue was that the definitions of __HYPERVISOR were not pulled if CONFIG_XEN_PRIVILEGED_GUEST was not set. Reported-by: Randy Dunlap Acked-by: Randy Dunlap Acked-by: Ingo Molnar Signed-off-by: Konrad Rzeszutek Wilk --- diff --git a/arch/x86/xen/trace.c b/arch/x86/xen/trace.c index 734beba..520022d 100644 --- a/arch/x86/xen/trace.c +++ b/arch/x86/xen/trace.c @@ -1,4 +1,5 @@ #include +#include #define N(x) [__HYPERVISOR_##x] = "("#x")" static const char *xen_hypercall_names[] = {