From: Wei Liu Date: Thu, 4 Oct 2018 15:43:22 +0000 (+0100) Subject: x86: turn is_pv_{,32bit_}{domain,vcpu} into inline functions X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~3133 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=d87dd1bd6c1099398cdfce18e448088488bf6ca8;p=xen.git x86: turn is_pv_{,32bit_}{domain,vcpu} into inline functions And make them work with CONFIG_PV. Signed-off-by: Wei Liu Reviewed-by: Jan Beulich --- diff --git a/xen/include/asm-x86/domain.h b/xen/include/asm-x86/domain.h index cb0721e9d5..e7b82279e7 100644 --- a/xen/include/asm-x86/domain.h +++ b/xen/include/asm-x86/domain.h @@ -13,8 +13,6 @@ #include #define has_32bit_shinfo(d) ((d)->arch.has_32bit_shinfo) -#define is_pv_32bit_domain(d) ((d)->arch.is_32bit_pv) -#define is_pv_32bit_vcpu(v) (is_pv_32bit_domain((v)->domain)) #define is_hvm_pv_evtchn_domain(d) (is_hvm_domain(d) && \ (d)->arch.hvm.irq->callback_via_type == HVMIRQ_callback_vector) diff --git a/xen/include/xen/sched.h b/xen/include/xen/sched.h index 0ddff03a30..4b23805367 100644 --- a/xen/include/xen/sched.h +++ b/xen/include/xen/sched.h @@ -873,8 +873,27 @@ void watchdog_domain_destroy(struct domain *d); #define VM_ASSIST(d, t) (test_bit(VMASST_TYPE_ ## t, &(d)->vm_assist)) -#define is_pv_domain(d) ((d)->guest_type == guest_type_pv) -#define is_pv_vcpu(v) (is_pv_domain((v)->domain)) +static inline bool is_pv_domain(const struct domain *d) +{ + return IS_ENABLED(CONFIG_PV) ? d->guest_type == guest_type_pv : false; +} + +static inline bool is_pv_vcpu(const struct vcpu *v) +{ + return is_pv_domain(v->domain); +} + +#ifdef CONFIG_COMPAT +static inline bool is_pv_32bit_domain(const struct domain *d) +{ + return is_pv_domain(d) && d->arch.is_32bit_pv; +} + +static inline bool is_pv_32bit_vcpu(const struct vcpu *v) +{ + return is_pv_32bit_domain(v->domain); +} +#endif static inline bool is_hvm_domain(const struct domain *d) {