xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/2] x86: skip migrating IRQF_PER_CPU irq in fixup_irqs
@ 2011-05-06  6:43 Tian, Kevin
  2011-05-06 13:58 ` Konrad Rzeszutek Wilk
  0 siblings, 1 reply; 6+ messages in thread
From: Tian, Kevin @ 2011-05-06  6:43 UTC (permalink / raw)
  To: linux-kernel@vger.kernel.org, mingo@redhat.com, hpa@zytor.com,
	tglx@linutronix.de
  Cc: Ian Campbell, JBeulich@novell.com, xen-devel@lists.xensource.com

x86: skip migrating IRQF_PER_CPU irq in fixup_irqs

IRQF_PER_CPU marks a irq binding to a specific cpu, and can never be
moved away from that cpu. So it shouldn't be migrated when fixup irqs
to offline a cpu. Xen pvops guest is one source using IRQF_PER_CPU
on a set of virtual interrupts. Previously no error is observed 
because Xen event chip silently fails the set_affinity ops, and
logically IRQF_PER_CPU should be recognized here.

Signed-off-by: Fengzhe Zhang <fengzhe.zhang@intel.com>
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
CC: Thomas Gleixner <tglx@linutronix.de>
CC: Ingo Molnar <mingo@redhat.com>
CC: H. Peter Anvin <hpa@zytor.com>
CC: Ian Campbell <Ian.Campbell@citrix.com>
CC: Jan Beulich <JBeulich@novell.com>

--- linux-2.6.39-rc6.orig/arch/x86/kernel/irq.c	2011-05-04 10:59:13.000000000 +0800
+++ linux-2.6.39-rc6/arch/x86/kernel/irq.c	2011-05-06 09:20:25.563963000 +0800
@@ -249,7 +250,7 @@ void fixup_irqs(void)
 
 		data = irq_desc_get_irq_data(desc);
 		affinity = data->affinity;
-		if (!irq_has_action(irq) ||
+		if (!irq_has_action(irq) || irqd_is_per_cpu(data) ||
 		    cpumask_subset(affinity, cpu_online_mask)) {
 			raw_spin_unlock(&desc->lock);
 			continue;

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2 1/2] x86: skip migrating IRQF_PER_CPU irq in fixup_irqs
  2011-05-06  6:43 [PATCH v2 1/2] x86: skip migrating IRQF_PER_CPU irq in fixup_irqs Tian, Kevin
@ 2011-05-06 13:58 ` Konrad Rzeszutek Wilk
  2011-05-06 21:41   ` Tian, Kevin
  2011-05-09 12:39   ` Thomas Gleixner
  0 siblings, 2 replies; 6+ messages in thread
From: Konrad Rzeszutek Wilk @ 2011-05-06 13:58 UTC (permalink / raw)
  To: Tian, Kevin
  Cc: linux-kernel@vger.kernel.org, mingo@redhat.com, hpa@zytor.com,
	tglx@linutronix.de, Ian Campbell, JBeulich@novell.com,
	xen-devel@lists.xensource.com

On Fri, May 06, 2011 at 02:43:36PM +0800, Tian, Kevin wrote:
> x86: skip migrating IRQF_PER_CPU irq in fixup_irqs
> 
> IRQF_PER_CPU marks a irq binding to a specific cpu, and can never be
> moved away from that cpu. So it shouldn't be migrated when fixup irqs
> to offline a cpu. Xen pvops guest is one source using IRQF_PER_CPU
  ^- are called 
> on a set of virtual interrupts. Previously no error is observed 
                                                      ^^- was
 Which ones? Can you be more specific here of which type of virtual interrupts?
 spinlock? timer? 
> because Xen event chip silently fails the set_affinity ops, and
> logically IRQF_PER_CPU should be recognized here.

OK, so what if the set_affinity ops was implemented?
> 
> Signed-off-by: Fengzhe Zhang <fengzhe.zhang@intel.com>
> Signed-off-by: Kevin Tian <kevin.tian@intel.com>
> CC: Thomas Gleixner <tglx@linutronix.de>
> CC: Ingo Molnar <mingo@redhat.com>
> CC: H. Peter Anvin <hpa@zytor.com>
> CC: Ian Campbell <Ian.Campbell@citrix.com>
> CC: Jan Beulich <JBeulich@novell.com>
> 
> --- linux-2.6.39-rc6.orig/arch/x86/kernel/irq.c	2011-05-04 10:59:13.000000000 +0800
> +++ linux-2.6.39-rc6/arch/x86/kernel/irq.c	2011-05-06 09:20:25.563963000 +0800
> @@ -249,7 +250,7 @@ void fixup_irqs(void)
>  
>  		data = irq_desc_get_irq_data(desc);
>  		affinity = data->affinity;
> -		if (!irq_has_action(irq) ||
> +		if (!irq_has_action(irq) || irqd_is_per_cpu(data) ||
>  		    cpumask_subset(affinity, cpu_online_mask)) {
>  			raw_spin_unlock(&desc->lock);
>  			continue;
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: [PATCH v2 1/2] x86: skip migrating IRQF_PER_CPU irq in fixup_irqs
  2011-05-06 13:58 ` Konrad Rzeszutek Wilk
@ 2011-05-06 21:41   ` Tian, Kevin
  2011-05-09 12:39   ` Thomas Gleixner
  1 sibling, 0 replies; 6+ messages in thread
From: Tian, Kevin @ 2011-05-06 21:41 UTC (permalink / raw)
  To: Konrad Rzeszutek Wilk
  Cc: xen-devel@lists.xensource.com, linux-kernel@vger.kernel.org,
	JBeulich@novell.com, Ian Campbell, mingo@redhat.com,
	hpa@zytor.com, tglx@linutronix.de

> From: Konrad Rzeszutek Wilk [mailto:konrad.wilk@oracle.com]
> Sent: Friday, May 06, 2011 9:58 PM
> 
> On Fri, May 06, 2011 at 02:43:36PM +0800, Tian, Kevin wrote:
> > x86: skip migrating IRQF_PER_CPU irq in fixup_irqs
> >
> > IRQF_PER_CPU marks a irq binding to a specific cpu, and can never be
> > moved away from that cpu. So it shouldn't be migrated when fixup irqs
> > to offline a cpu. Xen pvops guest is one source using IRQF_PER_CPU
>   ^- are called
> > on a set of virtual interrupts. Previously no error is observed
>                                                       ^^- was
> Which ones? Can you be more specific here of which type of virtual interrupts?
>  spinlock? timer?

all of them: spinlock, timer, resched, callfunc, ...

> > because Xen event chip silently fails the set_affinity ops, and
> > logically IRQF_PER_CPU should be recognized here.
> 
> OK, so what if the set_affinity ops was implemented?

it was implemented: (drivers/xen/event.c, rebind_irq_to_cpu)
        /*
         * If this fails, it usually just indicates that we're dealing with a
         * virq or IPI channel, which don't actually need to be rebound. Ignore
         * it, but don't do the xenlinux-level rebind in that case.
         */
        if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_vcpu, &bind_vcpu) >= 0)
                bind_evtchn_to_cpu(evtchn, tcpu);
Hypervisor doesn't allow to change affinity for virq and ipi.

Thanks,
Kevin

> >
> > Signed-off-by: Fengzhe Zhang <fengzhe.zhang@intel.com>
> > Signed-off-by: Kevin Tian <kevin.tian@intel.com>
> > CC: Thomas Gleixner <tglx@linutronix.de>
> > CC: Ingo Molnar <mingo@redhat.com>
> > CC: H. Peter Anvin <hpa@zytor.com>
> > CC: Ian Campbell <Ian.Campbell@citrix.com>
> > CC: Jan Beulich <JBeulich@novell.com>
> >
> > --- linux-2.6.39-rc6.orig/arch/x86/kernel/irq.c	2011-05-04
> 10:59:13.000000000 +0800
> > +++ linux-2.6.39-rc6/arch/x86/kernel/irq.c	2011-05-06 09:20:25.563963000
> +0800
> > @@ -249,7 +250,7 @@ void fixup_irqs(void)
> >
> >  		data = irq_desc_get_irq_data(desc);
> >  		affinity = data->affinity;
> > -		if (!irq_has_action(irq) ||
> > +		if (!irq_has_action(irq) || irqd_is_per_cpu(data) ||
> >  		    cpumask_subset(affinity, cpu_online_mask)) {
> >  			raw_spin_unlock(&desc->lock);
> >  			continue;
> > --
> > To unsubscribe from this list: send the line "unsubscribe
> > linux-kernel" in the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> > Please read the FAQ at  http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2 1/2] x86: skip migrating IRQF_PER_CPU irq in fixup_irqs
  2011-05-06 13:58 ` Konrad Rzeszutek Wilk
  2011-05-06 21:41   ` Tian, Kevin
@ 2011-05-09 12:39   ` Thomas Gleixner
  2011-05-09 14:28     ` Jan Beulich
  2011-05-10  3:26     ` Tian, Kevin
  1 sibling, 2 replies; 6+ messages in thread
From: Thomas Gleixner @ 2011-05-09 12:39 UTC (permalink / raw)
  To: Konrad Rzeszutek Wilk
  Cc: Tian, Kevin, linux-kernel@vger.kernel.org, mingo@redhat.com,
	hpa@zytor.com, Ian Campbell, JBeulich@novell.com,
	xen-devel@lists.xensource.com

On Fri, 6 May 2011, Konrad Rzeszutek Wilk wrote:
> On Fri, May 06, 2011 at 02:43:36PM +0800, Tian, Kevin wrote:
> > because Xen event chip silently fails the set_affinity ops, and
> > logically IRQF_PER_CPU should be recognized here.
> 
> OK, so what if the set_affinity ops was implemented?

An interrupt chip which has a set_affinity op should not mark
something per cpu, which implies that the irq CANNOT be moved.

Thanks,

	tglx

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2 1/2] x86: skip migrating IRQF_PER_CPU irq in fixup_irqs
  2011-05-09 12:39   ` Thomas Gleixner
@ 2011-05-09 14:28     ` Jan Beulich
  2011-05-10  3:26     ` Tian, Kevin
  1 sibling, 0 replies; 6+ messages in thread
From: Jan Beulich @ 2011-05-09 14:28 UTC (permalink / raw)
  To: Thomas Gleixner, Konrad Rzeszutek Wilk
  Cc: Kevin Tian, xen-devel@lists.xensource.com,
	linux-kernel@vger.kernel.org, Ian Campbell, mingo@redhat.com,
	hpa@zytor.com

>>> On 09.05.11 at 14:39, Thomas Gleixner <tglx@linutronix.de> wrote:
> On Fri, 6 May 2011, Konrad Rzeszutek Wilk wrote:
>> On Fri, May 06, 2011 at 02:43:36PM +0800, Tian, Kevin wrote:
>> > because Xen event chip silently fails the set_affinity ops, and
>> > logically IRQF_PER_CPU should be recognized here.
>> 
>> OK, so what if the set_affinity ops was implemented?
> 
> An interrupt chip which has a set_affinity op should not mark
> something per cpu, which implies that the irq CANNOT be moved.

Why shouldn't it be possible o use the same "chip" for both per-CPU
and "normal" IRQs?

Jan

^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: [PATCH v2 1/2] x86: skip migrating IRQF_PER_CPU irq in fixup_irqs
  2011-05-09 12:39   ` Thomas Gleixner
  2011-05-09 14:28     ` Jan Beulich
@ 2011-05-10  3:26     ` Tian, Kevin
  1 sibling, 0 replies; 6+ messages in thread
From: Tian, Kevin @ 2011-05-10  3:26 UTC (permalink / raw)
  To: Thomas Gleixner, Konrad Rzeszutek Wilk
  Cc: linux-kernel@vger.kernel.org, mingo@redhat.com, hpa@zytor.com,
	Ian Campbell, JBeulich@novell.com, xen-devel@lists.xensource.com

> From: Thomas Gleixner [mailto:tglx@linutronix.de]
> Sent: Monday, May 09, 2011 8:39 PM
> 
> On Fri, 6 May 2011, Konrad Rzeszutek Wilk wrote:
> > On Fri, May 06, 2011 at 02:43:36PM +0800, Tian, Kevin wrote:
> > > because Xen event chip silently fails the set_affinity ops, and
> > > logically IRQF_PER_CPU should be recognized here.
> >
> > OK, so what if the set_affinity ops was implemented?
> 
> An interrupt chip which has a set_affinity op should not mark something per
> cpu, which implies that the irq CANNOT be moved.
> 

If this is the hard requirement, why not throwing out an error when a chip
is registered?

Thanks
Kevin

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-05-10  3:26 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-06  6:43 [PATCH v2 1/2] x86: skip migrating IRQF_PER_CPU irq in fixup_irqs Tian, Kevin
2011-05-06 13:58 ` Konrad Rzeszutek Wilk
2011-05-06 21:41   ` Tian, Kevin
2011-05-09 12:39   ` Thomas Gleixner
2011-05-09 14:28     ` Jan Beulich
2011-05-10  3:26     ` Tian, Kevin

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).