mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-17 21:26:13 -07:00
CONFIG_XEN is generated by configure and stored in "config-target.h",
which is (obviously) only include for target-specific objects.
This is a problem for target-agnostic objects as CONFIG_XEN is never
defined and xen_enabled() is always inlined as 'false'.
Fix by following the KVM schema, defining CONFIG_XEN_IS_POSSIBLE
when we don't know to force the call of the non-inlined function,
returning the xen_allowed boolean.
Fixes:
|
||
|---|---|---|
| .. | ||
| kvm | ||
| stubs | ||
| tcg | ||
| xen | ||
| accel.c | ||
| Kconfig | ||
| Makefile.objs | ||
| qtest.c | ||