From 7214bd45fac72a1d74eac51109bf1d27f65c326b Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Wed, 15 Feb 2012 12:24:19 +0000 Subject: xen: make need_iommu == 0 if !HAS_PASSTHROUGH Signed-off-by: Ian Campbell Acked-by: keir@xen.org Committed-by: Ian Campbell --- xen/include/xen/sched.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'xen/include/xen/sched.h') diff --git a/xen/include/xen/sched.h b/xen/include/xen/sched.h index 567cd363a7..3699929096 100644 --- a/xen/include/xen/sched.h +++ b/xen/include/xen/sched.h @@ -266,8 +266,10 @@ struct domain /* Is this an HVM guest? */ bool_t is_hvm; +#ifdef HAS_PASSTHROUGH /* Does this guest need iommu mappings? */ bool_t need_iommu; +#endif /* Is this guest fully privileged (aka dom0)? */ bool_t is_privileged; /* Which guest this guest has privileges on */ @@ -687,7 +689,11 @@ void watchdog_domain_destroy(struct domain *d); #define is_hvm_vcpu(v) (is_hvm_domain(v->domain)) #define is_pinned_vcpu(v) ((v)->domain->is_pinned || \ cpumask_weight((v)->cpu_affinity) == 1) +#ifdef HAS_PASSTHROUGH #define need_iommu(d) ((d)->need_iommu) +#else +#define need_iommu(d) (0) +#endif void set_vcpu_migration_delay(unsigned int delay); unsigned int get_vcpu_migration_delay(void); -- cgit v1.2.3