From: Nikolay Aleksandrov <nikolay@redhat.com>
To: David Miller <davem@davemloft.net>
Cc: netdev@vger.kernel.org, linux-net-drivers@solarflare.com,
sshah@solarflare.com
Subject: Re: [PATCH net] sfc: fix calling of free_irq with 0 argument
Date: Wed, 07 May 2014 21:45:51 +0200 [thread overview]
Message-ID: <536A8D6F.9090108@redhat.com> (raw)
In-Reply-To: <20140507.153925.2030838202936450086.davem@davemloft.net>
On 05/07/2014 09:39 PM, David Miller wrote:
> From: Nikolay Aleksandrov <nikolay@redhat.com>
> Date: Tue, 6 May 2014 14:49:16 +0200
>
>> If the sfc driver is in legacy interrupt mode (either explicitly by
>> using interrupt_mode module param or by falling back to it) it will
>> hit a warning at kernel/irq/manage.c because it will try to free irq 0
>> in efx_nic_fini_interrupt() since the MSI interrupts were freed always,
>> but in legacy irq mode they're == 0. So fix it by checking if we
>> actually have an interrupt allocated and only then free it.
>>
>> CC: <linux-net-drivers@solarflare.com>
>> CC: Shradha Shah <sshah@solarflare.com>
>> CC: David S. Miller <davem@davemloft.net>
>>
>> Reported-by: Zenghui Shi <zshi@redhat.com>
>> Signed-off-by: Nikolay Aleksandrov <nikolay@redhat.com>
>> ---
>> There're other ways to fix this as well, but I chose this one as it follows
>> the logic in the code. Also I saw it used in a few places to check if
>> there's an IRQ allocated for that channel.
>
> Zero can be a valid interrupt on some systems.
>
> This is a discussion that keeps popping up from time to time, and Linus
> usually gets upset when someone adds a "!irq" test somewhere.
>
> Why not just guard the efx_for_each_channel() loop with a top-level
> test of whether we are using legacy interrupt mode? That will avoid
> this issue entirely.
>
Yeah, that was my other solution - looking at the mode the card's in.
I'm fine both ways, like I said earlier I did it this way to be consistent
with the style used (it's used like that in other places, too).
And then I found out it's been like that before the commit I mentioned.
If the Solarflare folks are okay with it I can re-write the function to be
based on the mode used instead of checking for zero irq. I'll post an
adjusted patch after I get a chance to test it.
Nik
prev parent reply other threads:[~2014-05-07 19:46 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-06 12:49 [PATCH net] sfc: fix calling of free_irq with 0 argument Nikolay Aleksandrov
2014-05-06 15:34 ` Nikolay Aleksandrov
2014-05-07 19:39 ` David Miller
2014-05-07 19:45 ` Nikolay Aleksandrov [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=536A8D6F.9090108@redhat.com \
--to=nikolay@redhat.com \
--cc=davem@davemloft.net \
--cc=linux-net-drivers@solarflare.com \
--cc=netdev@vger.kernel.org \
--cc=sshah@solarflare.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).