mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] x86: io_apic: Move and reenable irq only when CONFIG_GENERIC_PENDING_IRQ=y
@ 2012-03-02  9:30 Alexander Gordeev
  2012-03-02  9:40 ` Ingo Molnar
  0 siblings, 1 reply; 2+ messages in thread
From: Alexander Gordeev @ 2012-03-02  9:30 UTC (permalink / raw)
  To: Thomas Gleixner; +Cc: linux-kernel

When CONFIG_GENERIC_PENDING_IRQ=n irq move and reenable code is never get
executed, nor do_unmask_irq variable updates its init value. Move both the
code and do_unmask_irq under CONFIG_GENERIC_PENDING_IRQ macro.

Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
---
 arch/x86/kernel/apic/io_apic.c |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c
index fb07275..57dec14 100644
--- a/arch/x86/kernel/apic/io_apic.c
+++ b/arch/x86/kernel/apic/io_apic.c
@@ -2515,8 +2515,11 @@ atomic_t irq_mis_count;
 static void ack_apic_level(struct irq_data *data)
 {
 	struct irq_cfg *cfg = data->chip_data;
-	int i, do_unmask_irq = 0, irq = data->irq;
+	int i, irq = data->irq;
 	unsigned long v;
+#ifdef CONFIG_GENERIC_PENDING_IRQ
+	int do_unmask_irq = 0;
+#endif
 
 	irq_complete_move(cfg);
 #ifdef CONFIG_GENERIC_PENDING_IRQ
@@ -2581,6 +2584,7 @@ static void ack_apic_level(struct irq_data *data)
 		eoi_ioapic_irq(irq, cfg);
 	}
 
+#ifdef CONFIG_GENERIC_PENDING_IRQ
 	/* Now we can move and renable the irq */
 	if (unlikely(do_unmask_irq)) {
 		/* Only migrate the irq if the ack has been received.
@@ -2613,6 +2617,7 @@ static void ack_apic_level(struct irq_data *data)
 			irq_move_masked_irq(data);
 		unmask_ioapic(cfg);
 	}
+#endif
 }
 
 #ifdef CONFIG_IRQ_REMAP
-- 
1.7.7.6


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

* Re: [PATCH] x86: io_apic: Move and reenable irq only when CONFIG_GENERIC_PENDING_IRQ=y
  2012-03-02  9:30 [PATCH] x86: io_apic: Move and reenable irq only when CONFIG_GENERIC_PENDING_IRQ=y Alexander Gordeev
@ 2012-03-02  9:40 ` Ingo Molnar
  0 siblings, 0 replies; 2+ messages in thread
From: Ingo Molnar @ 2012-03-02  9:40 UTC (permalink / raw)
  To: Alexander Gordeev; +Cc: Thomas Gleixner, linux-kernel


* Alexander Gordeev <agordeev@redhat.com> wrote:

> When CONFIG_GENERIC_PENDING_IRQ=n irq move and reenable code is never get
> executed, nor do_unmask_irq variable updates its init value. Move both the
> code and do_unmask_irq under CONFIG_GENERIC_PENDING_IRQ macro.
> 
> Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
> ---
>  arch/x86/kernel/apic/io_apic.c |    7 ++++++-
>  1 files changed, 6 insertions(+), 1 deletions(-)
> 
> diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c
> index fb07275..57dec14 100644
> --- a/arch/x86/kernel/apic/io_apic.c
> +++ b/arch/x86/kernel/apic/io_apic.c
> @@ -2515,8 +2515,11 @@ atomic_t irq_mis_count;
>  static void ack_apic_level(struct irq_data *data)
>  {
>  	struct irq_cfg *cfg = data->chip_data;
> -	int i, do_unmask_irq = 0, irq = data->irq;
> +	int i, irq = data->irq;
>  	unsigned long v;
> +#ifdef CONFIG_GENERIC_PENDING_IRQ
> +	int do_unmask_irq = 0;
> +#endif
>  
>  	irq_complete_move(cfg);
>  #ifdef CONFIG_GENERIC_PENDING_IRQ
> @@ -2581,6 +2584,7 @@ static void ack_apic_level(struct irq_data *data)
>  		eoi_ioapic_irq(irq, cfg);
>  	}
>  
> +#ifdef CONFIG_GENERIC_PENDING_IRQ
>  	/* Now we can move and renable the irq */
>  	if (unlikely(do_unmask_irq)) {
>  		/* Only migrate the irq if the ack has been received.
> @@ -2613,6 +2617,7 @@ static void ack_apic_level(struct irq_data *data)
>  			irq_move_masked_irq(data);
>  		unmask_ioapic(cfg);
>  	}
> +#endif

The two CONFIG_GENERIC_PENDING_IRQ blocks should be moved out 
into two helper inline functions right in front of 
ack_apic_level() so that we do not complicate ack_apic_level() 
with so many #ifdefs.

They'd have the form of:

	int masked = 0;

	masked = ioapic_irqd_mask(data, cfg);

	...

	ioapic_irqd_unmask(data, cfg, masked);

or so.

Thanks,

	Ingo

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

end of thread, other threads:[~2012-03-02  9:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-02  9:30 [PATCH] x86: io_apic: Move and reenable irq only when CONFIG_GENERIC_PENDING_IRQ=y Alexander Gordeev
2012-03-02  9:40 ` Ingo Molnar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®