From: Thomas Gleixner <tglx@linutronix.de>
To: Till Straumann <strauman@slac.stanford.edu>
Cc: LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] genirq: Sanitize spurious interrupt detection of threaded irqs
Date: Fri, 8 Mar 2013 17:12:08 +0100 (CET) [thread overview]
Message-ID: <alpine.LFD.2.02.1303081704230.22263@ionos> (raw)
In-Reply-To: <5139F9E8.8090402@slac.stanford.edu>
On Fri, 8 Mar 2013, Till Straumann wrote:
> 1) I'm not sure adding the SPURIOUS_DEFERRED flag into
> threads_handled_last is OK - what happens if the atomic_t counter
> can hold more than 31 bits? In this case, when thread handlers
> increment the counter there is interference with the flag. If
> this is not harmful then it is at least ugly.
atomic_t is going to stay 32 bit otherwise we'll have more horrible
problems than that one.
> I'm not as familiar with the code as you are but wouldn't it be
> simpler to always defer spurious detection thus avoiding to have to
> keep track of the state (deferral active/inactive)? I.e., if any
> primary handler returns IRQ_HANDLED then we simply increment the
> counter. note_interrupt() could then always compare the previous
> count to the current count and if they are equal conclude that the
> interrupt was not handled:
Yeah, we could do it that way. Would probably be simpler.
> handle_irq_event_percpu()
> {
> ...
> if (!noirqdebug)
> note_interrupt(irq, desc, retval);
>
> if ( (retval & IRQ_HANDLED) )
> atomic_inc(&desc->threads_handled);
> }
>
> and in 'note_interrupt()'
>
> handled = atomic_read(&desc->threads_handled);
> if ( desc->threads_handled_last == handled ) {
> action_ret = IRQ_NONE;
> } else {
> action_ret = IRQ_HANDLED;
> desc->threads_handled_last = handled;
> }
>
> Either way - I'm not sure what deferral does to the part of the algorithm
> in note_interrupt() which deals with misrouted interrupts since the
> 'action_ret' that goes into try_misrouted_irq() is delayed by one interrupt
> cycle.
That should not matter much methinks, but I'll try what explodes on
one of my affected machines.
>
> 2) note_interrupt is also called from irq/chip.c:handle_nested_irq() and I
> believe
> this routine would also need to increment the 'threads_handled' counter
> rather
> than calling note_interrupt.
That's a different issue. The nested_irq handler is for interrupts
which are demultiplexed by a primary threaded handler. That interrupt
is never handled in hard interrupt context. It's always called from
the context of the demultiplxing thread.
Thanks,
tglx
next prev parent reply other threads:[~2013-03-08 16:12 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-07 13:53 [PATCH] genirq: Sanitize spurious interrupt detection of threaded irqs Thomas Gleixner
2013-03-08 14:47 ` Till Straumann
2013-03-08 16:12 ` Thomas Gleixner [this message]
2013-03-08 17:19 ` Till Straumann
2013-03-08 19:41 ` Thomas Gleixner
2013-03-12 13:22 ` Till Straumann
2014-05-03 21:19 ` [tip:irq/core] " tip-bot for Thomas Gleixner
[not found] <CANGgnMbszHzYe9pF2C6wag4MY_PfBG2qrMCC=rMmQnb-jyXXXw@mail.gmail.com>
[not found] ` <52CAB05F.4010303@hartkopp.net>
2014-04-07 18:38 ` [PATCH] " Austin Schuh
2014-04-07 18:41 ` Thomas Gleixner
2014-04-07 20:05 ` Austin Schuh
2014-04-07 20:07 ` Thomas Gleixner
2014-04-07 20:08 ` Austin Schuh
2014-04-28 20:20 ` Austin Schuh
2014-04-28 20:44 ` Thomas Gleixner
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=alpine.LFD.2.02.1303081704230.22263@ionos \
--to=tglx@linutronix.de \
--cc=linux-kernel@vger.kernel.org \
--cc=strauman@slac.stanford.edu \
/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).