[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] x86: move hvm_domain_use_pirq to hvm files
commit c759fb5bc303411e70322948a6ced81b6219ad3a Author: Wei Liu <wei.liu2@xxxxxxxxxx> AuthorDate: Mon Sep 24 18:27:56 2018 +0100 Commit: Wei Liu <wei.liu2@xxxxxxxxxx> CommitDate: Wed Sep 26 09:50:17 2018 +0100 x86: move hvm_domain_use_pirq to hvm files Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> --- xen/arch/x86/hvm/irq.c | 5 +++++ xen/arch/x86/irq.c | 5 ----- xen/include/asm-x86/hvm/irq.h | 3 +++ xen/include/asm-x86/irq.h | 1 - 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/xen/arch/x86/hvm/irq.c b/xen/arch/x86/hvm/irq.c index 37040d1d47..e03a87ad50 100644 --- a/xen/arch/x86/hvm/irq.c +++ b/xen/arch/x86/hvm/irq.c @@ -27,6 +27,11 @@ #include <asm/hvm/support.h> #include <asm/msi.h> +bool hvm_domain_use_pirq(const struct domain *d, const struct pirq *pirq) +{ + return is_hvm_domain(d) && pirq && pirq->arch.hvm.emuirq != IRQ_UNBOUND; +} + /* Must be called with hvm_domain->irq_lock hold */ static void assert_gsi(struct domain *d, unsigned ioapic_gsi) { diff --git a/xen/arch/x86/irq.c b/xen/arch/x86/irq.c index ec93ab60e5..35e7de594f 100644 --- a/xen/arch/x86/irq.c +++ b/xen/arch/x86/irq.c @@ -2567,11 +2567,6 @@ void arch_evtchn_bind_pirq(struct domain *d, int pirq) spin_unlock_irqrestore(&desc->lock, flags); } -bool hvm_domain_use_pirq(const struct domain *d, const struct pirq *pirq) -{ - return is_hvm_domain(d) && pirq && pirq->arch.hvm.emuirq != IRQ_UNBOUND; -} - static int allocate_pirq(struct domain *d, int index, int pirq, int irq, int type, int *nr) { diff --git a/xen/include/asm-x86/hvm/irq.h b/xen/include/asm-x86/hvm/irq.h index 2e6fa70a47..a2c9938ccf 100644 --- a/xen/include/asm-x86/hvm/irq.h +++ b/xen/include/asm-x86/hvm/irq.h @@ -215,4 +215,7 @@ void hvm_maybe_deassert_evtchn_irq(void); void hvm_assert_evtchn_irq(struct vcpu *v); void hvm_set_callback_via(struct domain *d, uint64_t via); +struct pirq; +bool hvm_domain_use_pirq(const struct domain *, const struct pirq *); + #endif /* __ASM_X86_HVM_IRQ_H__ */ diff --git a/xen/include/asm-x86/irq.h b/xen/include/asm-x86/irq.h index 054c3ab6be..4b39997f09 100644 --- a/xen/include/asm-x86/irq.h +++ b/xen/include/asm-x86/irq.h @@ -145,7 +145,6 @@ int get_free_pirqs(struct domain *, unsigned int nr); void free_domain_pirqs(struct domain *d); int map_domain_emuirq_pirq(struct domain *d, int pirq, int irq); int unmap_domain_pirq_emuirq(struct domain *d, int pirq); -bool hvm_domain_use_pirq(const struct domain *, const struct pirq *); /* Reset irq affinities to match the given CPU mask. */ void fixup_irqs(const cpumask_t *mask, bool verbose); -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |