aboutsummaryrefslogtreecommitdiffstats
path: root/hw/xen.h
diff options
context:
space:
mode:
authorAlexander Graf <agraf@suse.de>2011-07-17 07:30:29 +0200
committerAlexander Graf <agraf@suse.de>2011-07-26 06:43:11 +0200
commit59d21e537b6c3a964d4e346e9cf2a1e17267a27c (patch)
treed15748ad07c926b722dc71dae679c0357b27c0a1 /hw/xen.h
parentf03a4ac12222ce1fb7886dc6cb38a027b73ccff2 (diff)
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>
Diffstat (limited to 'hw/xen.h')
-rw-r--r--hw/xen.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xen.h b/hw/xen.h
index 43b95d688..21621115e 100644
--- a/hw/xen.h
+++ b/hw/xen.h
@@ -24,7 +24,7 @@ extern int xen_allowed;
static inline int xen_enabled(void)
{
-#ifdef CONFIG_XEN_BACKEND
+#if defined(CONFIG_XEN_BACKEND) && !defined(CONFIG_NO_XEN)
return xen_allowed;
#else
return 0;