From: Andrew Cooper <andrew.cooper3@citrix.com>
To: xen-devel@lists.xensource.com
Subject: Re: [PATCH] xen,irq: Clean up __clear_irq_vector
Date: Wed, 28 Sep 2011 14:46:57 +0100 [thread overview]
Message-ID: <4E832551.8080907@citrix.com> (raw)
In-Reply-To: <b8359ca81cd9b37d4a31.1317217584@elijah>
On 28/09/11 14:46, George Dunlap wrote:
> Fix and clean up the logic to __clear_irq_vector().
>
> We always need to clear the things related to cfg->vector.
>
> If the IRQ is currently in motion, then we need to also clear
> out things related to cfg->old_vector.
>
> This patch reorganizes the function to make the parallels between
> the two clean-ups more obvious.
>
> The main functional change here is with cfg->used_vectors; make
> sure to clear cfg->vector always (even if !cfg->move_in_progress);
> if cfg->move_in_progress, clear cfg->old_vector as well.
>
> Signed-off-by: George Dunlap <george.dunlap@eu.citrix.com>
Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
> diff -r 59c7213b5949 -r b8359ca81cd9 xen/arch/x86/irq.c
> --- a/xen/arch/x86/irq.c Tue Sep 27 18:39:15 2011 +0100
> +++ b/xen/arch/x86/irq.c Wed Sep 28 14:46:12 2011 +0100
> @@ -211,33 +211,23 @@ static void dynamic_irq_cleanup(unsigned
>
> static void __clear_irq_vector(int irq)
> {
> - int cpu, vector;
> + int cpu, vector, old_vector;
> cpumask_t tmp_mask;
> struct irq_cfg *cfg = irq_cfg(irq);
>
> BUG_ON(!cfg->vector);
>
> + /* Always clear cfg->vector */
> vector = cfg->vector;
> cpus_and(tmp_mask, cfg->cpu_mask, cpu_online_map);
>
> - trace_irq_mask(TRC_HW_IRQ_CLEAR_VECTOR, irq, vector, &tmp_mask);
> -
> - for_each_cpu_mask(cpu, tmp_mask)
> + for_each_cpu_mask(cpu, tmp_mask) {
> + ASSERT( per_cpu(vector_irq, cpu)[vector] == irq );
> per_cpu(vector_irq, cpu)[vector] = -1;
> + }
>
> cfg->vector = IRQ_VECTOR_UNASSIGNED;
> cpus_clear(cfg->cpu_mask);
> - cfg->used = IRQ_UNUSED;
> -
> - if (likely(!cfg->move_in_progress))
> - return;
> -
> - cpus_and(tmp_mask, cfg->old_cpu_mask, cpu_online_map);
> - for_each_cpu_mask(cpu, tmp_mask) {
> - ASSERT( per_cpu(vector_irq, cpu)[cfg->old_vector] == irq );
> - TRACE_3D(TRC_HW_IRQ_MOVE_FINISH, irq, vector, cpu);
> - per_cpu(vector_irq, cpu)[cfg->old_vector] = -1;
> - }
>
> if ( cfg->used_vectors )
> {
> @@ -245,9 +235,33 @@ static void __clear_irq_vector(int irq)
> clear_bit(vector, cfg->used_vectors);
> }
>
> - cfg->move_in_progress = 0;
> + cfg->used = IRQ_UNUSED;
> +
> + trace_irq_mask(TRC_HW_IRQ_CLEAR_VECTOR, irq, vector, &tmp_mask);
> +
> + if (likely(!cfg->move_in_progress))
> + return;
> +
> + /* If we were in motion, also clear cfg->old_vector */
> + old_vector = cfg->old_vector;
> + cpus_and(tmp_mask, cfg->old_cpu_mask, cpu_online_map);
> +
> + for_each_cpu_mask(cpu, tmp_mask) {
> + ASSERT( per_cpu(vector_irq, cpu)[old_vector] == irq );
> + TRACE_3D(TRC_HW_IRQ_MOVE_FINISH, irq, old_vector, cpu);
> + per_cpu(vector_irq, cpu)[old_vector] = -1;
> + }
> +
> cfg->old_vector = IRQ_VECTOR_UNASSIGNED;
> cpus_clear(cfg->old_cpu_mask);
> +
> + if ( cfg->used_vectors )
> + {
> + ASSERT(test_bit(old_vector, cfg->used_vectors));
> + clear_bit(old_vector, cfg->used_vectors);
> + }
> +
> + cfg->move_in_progress = 0;
> }
>
> void clear_irq_vector(int irq)
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
--
Andrew Cooper - Dom0 Kernel Engineer, Citrix XenServer
T: +44 (0)1223 225 900, http://www.citrix.com
prev parent reply other threads:[~2011-09-28 13:46 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-09-28 13:46 [PATCH] xen,irq: Clean up __clear_irq_vector George Dunlap
2011-09-28 13:46 ` Andrew Cooper [this message]
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=4E832551.8080907@citrix.com \
--to=andrew.cooper3@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.