[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 03/17] x86: turn is_pv_{, 32bit_}{domain, vcpu} into inline functions
And make them work with CONFIG_PV. Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> --- xen/include/asm-x86/domain.h | 2 -- xen/include/xen/sched.h | 21 +++++++++++++++++++-- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/xen/include/asm-x86/domain.h b/xen/include/asm-x86/domain.h index cb0721e..e7b8227 100644 --- a/xen/include/asm-x86/domain.h +++ b/xen/include/asm-x86/domain.h @@ -13,8 +13,6 @@ #include <public/hvm/hvm_info_table.h> #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 0ba80cb..b32ad57 100644 --- a/xen/include/xen/sched.h +++ b/xen/include/xen/sched.h @@ -877,8 +877,25 @@ 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); +} + +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); +} static inline bool is_hvm_domain(const struct domain *d) { -- git-series 0.9.1 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |