From: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
To: xen-devel@lists.xensource.com
Cc: Tim.Deegan@citrix.com,
Stefano Stabellini <stefano.stabellini@eu.citrix.com>,
Ian.Campbell@citrix.com, david.vrabel@citrix.com
Subject: [PATCH v3 01/11] arm: rename link to inflight
Date: Fri, 2 Mar 2012 14:27:27 +0000 [thread overview]
Message-ID: <1330698457-8622-1-git-send-email-stefano.stabellini@eu.citrix.com> (raw)
In-Reply-To: <alpine.DEB.2.00.1203021415060.923@kaball-desktop>
The link field in pending_irq has a confusing name so rename it to
inflight and comment its behaviour.
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
---
xen/arch/arm/gic.c | 4 ++--
xen/arch/arm/vgic.c | 10 +++++-----
xen/include/asm-arm/domain.h | 4 +++-
3 files changed, 10 insertions(+), 8 deletions(-)
diff --git a/xen/arch/arm/gic.c b/xen/arch/arm/gic.c
index adc10bb..120ec82 100644
--- a/xen/arch/arm/gic.c
+++ b/xen/arch/arm/gic.c
@@ -450,8 +450,8 @@ static void maintenance_interrupt(int irq, void *dev_id, struct cpu_user_regs *r
GICC[GICC_DIR] = virq;
}
gic_inject_irq_stop();
- list_del(&p->link);
- INIT_LIST_HEAD(&p->link);
+ list_del(&p->inflight);
+ INIT_LIST_HEAD(&p->inflight);
cpu_raise_softirq(current->processor, VGIC_SOFTIRQ);
spin_unlock(¤t->arch.vgic.lock);
}
diff --git a/xen/arch/arm/vgic.c b/xen/arch/arm/vgic.c
index 584e682..dd99629 100644
--- a/xen/arch/arm/vgic.c
+++ b/xen/arch/arm/vgic.c
@@ -85,7 +85,7 @@ int domain_vgic_init(struct domain *d)
xmalloc_array(struct pending_irq,
d->arch.vgic.nr_lines + (32 * d->max_vcpus));
for (i=0; i<d->arch.vgic.nr_lines + (32 * d->max_vcpus); i++)
- INIT_LIST_HEAD(&d->arch.vgic.pending_irqs[i].link);
+ INIT_LIST_HEAD(&d->arch.vgic.pending_irqs[i].inflight);
for (i=0; i<DOMAIN_NR_RANKS(d); i++)
spin_lock_init(&d->arch.vgic.shared_irqs[i].lock);
return 0;
@@ -550,7 +550,7 @@ void vgic_vcpu_inject_irq(struct vcpu *v, unsigned int irq, int virtual)
struct pending_irq *iter, *n = irq_to_pending(v, irq);
/* irq still pending */
- if (!list_empty(&n->link))
+ if (!list_empty(&n->inflight))
return;
priority = byte_read(rank->ipriority[REG_RANK_INDEX(8, idx)], 0, byte);
@@ -565,16 +565,16 @@ void vgic_vcpu_inject_irq(struct vcpu *v, unsigned int irq, int virtual)
gic_set_guest_irq(irq, GICH_LR_PENDING, priority);
spin_lock(&v->arch.vgic.lock);
- list_for_each_entry ( iter, &v->arch.vgic.inflight_irqs, link )
+ list_for_each_entry ( iter, &v->arch.vgic.inflight_irqs, inflight )
{
if ( iter->priority < priority )
{
- list_add_tail(&n->link, &iter->link);
+ list_add_tail(&n->inflight, &iter->inflight);
spin_unlock(&v->arch.vgic.lock);
return;
}
}
- list_add(&n->link, &v->arch.vgic.inflight_irqs);
+ list_add(&n->inflight, &v->arch.vgic.inflight_irqs);
spin_unlock(&v->arch.vgic.lock);
/* we have a new higher priority irq, inject it into the guest */
cpu_raise_softirq(v->processor, VGIC_SOFTIRQ);
diff --git a/xen/include/asm-arm/domain.h b/xen/include/asm-arm/domain.h
index 3372d14..9851220 100644
--- a/xen/include/asm-arm/domain.h
+++ b/xen/include/asm-arm/domain.h
@@ -20,7 +20,9 @@ struct pending_irq
int irq;
struct irq_desc *desc; /* only set it the irq corresponds to a physical irq */
uint8_t priority;
- struct list_head link;
+ /* inflight is used to append instances of pending_irq to
+ * vgic.inflight_irqs */
+ struct list_head inflight;
};
struct arch_domain
--
1.7.2.5
next prev parent reply other threads:[~2012-03-02 14:27 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-02 14:27 [PATCH v3 0/11] xen/arm: event channels and shared_info page Stefano Stabellini
2012-03-02 14:27 ` Stefano Stabellini [this message]
2012-03-14 9:48 ` [PATCH v3 01/11] arm: rename link to inflight Ian Campbell
2012-03-02 14:27 ` [PATCH v3 02/11] arm: fix inflight_irqs list priority ordering Stefano Stabellini
2012-03-14 9:48 ` Ian Campbell
2012-03-02 14:27 ` [PATCH v3 03/11] arm: support fewer LR registers than virtual irqs Stefano Stabellini
2012-03-13 14:30 ` Ian Campbell
2012-03-13 17:31 ` Stefano Stabellini
2012-03-13 17:24 ` Ian Campbell
2012-03-14 9:26 ` Ian Campbell
2012-05-25 13:38 ` Stefano Stabellini
2012-03-02 14:27 ` [PATCH v3 04/11] arm: replace list_del and INIT_LIST_HEAD with list_del_init Stefano Stabellini
2012-03-14 9:49 ` Ian Campbell
2012-03-02 14:27 ` [PATCH v3 05/11] arm: shared_info page allocation and mapping Stefano Stabellini
2012-03-13 17:06 ` Ian Campbell
2012-05-25 13:44 ` Stefano Stabellini
2012-03-14 9:38 ` Ian Campbell
2012-05-25 13:54 ` Stefano Stabellini
2012-05-25 13:58 ` Ian Campbell
2012-03-02 14:27 ` [PATCH v3 06/11] arm: handle dom0_max_vcpus=0 case properly Stefano Stabellini
2012-03-14 9:49 ` Ian Campbell
2012-03-02 14:27 ` [PATCH v3 07/11] arm: use r12 to pass the hypercall number Stefano Stabellini
2012-03-13 15:28 ` Ian Campbell
2012-03-13 16:09 ` Ian Campbell
2012-03-13 16:17 ` WARNING: Xen ARMv7 with Virtualization Extensions Guest ABI has changed Ian Campbell
2012-03-02 14:27 ` [PATCH v3 08/11] arm: introduce more hypercalls Stefano Stabellini
2012-03-14 9:49 ` Ian Campbell
2012-03-02 14:27 ` [PATCH v3 09/11] arm: implement flush_tlb_all_local and flush_tlb_local Stefano Stabellini
2012-03-14 9:49 ` Ian Campbell
2012-03-02 14:27 ` [PATCH v3 10/11] arm: remove VGIC_SOFTIRQ Stefano Stabellini
2012-03-02 14:27 ` [PATCH v3 11/11] arm: implement event injection Stefano Stabellini
2012-03-14 9:50 ` [PATCH v3 0/11] xen/arm: event channels and shared_info page Ian Campbell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1330698457-8622-1-git-send-email-stefano.stabellini@eu.citrix.com \
--to=stefano.stabellini@eu.citrix.com \
--cc=Ian.Campbell@citrix.com \
--cc=Tim.Deegan@citrix.com \
--cc=david.vrabel@citrix.com \
--cc=xen-devel@lists.xensource.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).