Home
last modified time | relevance | path

Searched hist:"59 d21e537b6c3a964d4e346e9cf2a1e17267a27c" (Results 1 – 1 of 1) sorted by relevance

/openbmc/qemu/
H A Dconfigure59d21e537b6c3a964d4e346e9cf2a1e17267a27c Sun Jul 17 00:30:29 CDT 2011 Alexander Graf <agraf@suse.de> xen: make xen_enabled even more clever

When using xen_enabled() we're currently only checking if xen is enabled
at all during the build. But what if you want to build multiple targets
out of which only one can potentially run xen code?

That means that for generic code we'll still have to fall back to the
variable and potentially slow the code down, but it's not as important as
that is mostly xen device emulation which is not touched for non-xen targets.

The target specific code however can with this patch see that it's unable to
ever execute xen code. We can thus always return 0 on xen_enabled(), giving
gcc enough hints to evict the mapcache code from the target memory management
code.

Signed-off-by: Alexander Graf <agraf@suse.de>
Acked-by: Anthony PERARD <anthony.perard@citrix.com>