]> www.infradead.org Git - users/jedix/linux-maple.git/commit
xen/trace: Fix compile error when CONFIG_XEN_PRIVILEGED_GUEST is not set
authorKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Thu, 4 Aug 2011 22:42:10 +0000 (18:42 -0400)
committerKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Tue, 30 Aug 2011 15:09:00 +0000 (11:09 -0400)
commitc3c716e528852a7691253b5876cb0e0a14a9bd9d
tree6fc69cca6f1602fdb8306339434e067bfecf68c5
parent11c8722d72575fa7c61bf174a381d4ba0c71e0af
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 <rdunlap@xenotime.net>
Acked-by: Randy Dunlap <rdunlap@xenotime.net>
Acked-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
arch/x86/xen/trace.c