@@ -29,10 +29,6 @@
#include <xsm/xsm.h>
#include <xen/trace.h>
-#ifndef is_domain_direct_mapped
-# define is_domain_direct_mapped(d) ((void)(d), 0)
-#endif
-
struct memop_args {
/* INPUT */
struct domain *domain; /* Domain to be affected. */
@@ -19,6 +19,7 @@
#define is_hvm_pv_evtchn_domain(d) (has_hvm_container_domain(d) && \
d->arch.hvm_domain.irq.callback_via_type == HVMIRQ_callback_vector)
#define is_hvm_pv_evtchn_vcpu(v) (is_hvm_pv_evtchn_domain(v->domain))
+#define is_domain_direct_mapped(d) ((void)(d), 0)
#define VCPU_TRAP_NMI 1
#define VCPU_TRAP_MCE 2
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com> --- Changes in v4: - remove define is_domain_direct_mapped in common/memory.c; - define is_domain_direct_mapped as ((void)(d), 0) --- xen/common/memory.c | 4 ---- xen/include/asm-x86/domain.h | 1 + 2 files changed, 1 insertion(+), 4 deletions(-)