From: Thomas Gleixner <tglx@linutronix.de>
To: Jakub Kicinski <kuba@kernel.org>
Cc: linux-usb@vger.kernel.org, netdev@vger.kernel.org,
Michal Svec <msvec@suse.com>,
"David S. Miller" <davem@davemloft.net>,
Hayes Wang <hayeswang@realtek.com>,
Thierry Reding <treding@nvidia.com>,
Lee Jones <lee.jones@linaro.org>, Borislav Petkov <bp@alien8.de>
Subject: Re: [PATCH RFC] r8152: Ensure that napi_schedule() is handled
Date: Fri, 14 May 2021 23:10:43 +0200 [thread overview]
Message-ID: <87fsyp2f8s.ffs@nanos.tec.linutronix.de> (raw)
In-Reply-To: <20210514134655.73d972cb@kicinski-fedora-PC1C0HJN>
On Fri, May 14 2021 at 13:46, Jakub Kicinski wrote:
> On Fri, 14 May 2021 22:25:50 +0200 Thomas Gleixner wrote:
>> Except that some instruction cycle beancounters might complain about
>> the extra conditional for the sane cases.
>>
>> But yes, I'm fine with that as well. That's why this patch is marked RFC :)
>
> When we're in the right context (irq/bh disabled etc.) the cost is just
> read of preempt_count() and jump, right? And presumably preempt_count()
> is in the cache already, because those sections aren't very long. Let me
> make this change locally and see if it is in any way perceivable.
Right. Just wanted to mention it :)
> Obviously if anyone sees a way to solve the problem without much
> ifdefinery and force_irqthreads checks that'd be great - I don't.
This is not related to force_irqthreads at all. This very driver invokes
it from plain thread context.
> I'd rather avoid pushing this kind of stuff out to the drivers.
You could have napi_schedule_intask() or something like that which would
do the local_bh_disable()/enable() dance around the invocation of
napi_schedule(). That would also document it clearly in the drivers. A
quick grep shows a bunch of instances which could be replaced:
drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c-5704- local_bh_disable();
drivers/net/ethernet/mellanox/mlx4/en_netdev.c-1830- local_bh_disable();
drivers/net/usb/r8152.c-1552- local_bh_disable();
drivers/net/virtio_net.c-1355- local_bh_disable();
drivers/net/wireless/intel/iwlwifi/pcie/rx.c-1650- local_bh_disable();
drivers/net/wireless/intel/iwlwifi/pcie/rx.c-2015- local_bh_disable();
drivers/net/wireless/intel/iwlwifi/pcie/rx.c-2225- local_bh_disable();
drivers/net/wireless/intel/iwlwifi/pcie/rx.c-2235- local_bh_disable();
drivers/s390/net/qeth_core_main.c-3515- local_bh_disable();
Thanks,
tglx
next prev parent reply other threads:[~2021-05-14 21:10 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-14 10:17 [PATCH RFC] r8152: Ensure that napi_schedule() is handled Thomas Gleixner
2021-05-14 19:38 ` Jakub Kicinski
2021-05-14 20:25 ` Thomas Gleixner
2021-05-14 20:46 ` Jakub Kicinski
2021-05-14 21:10 ` Thomas Gleixner [this message]
2021-05-14 21:41 ` Jakub Kicinski
2021-05-14 23:23 ` Thomas Gleixner
2021-05-14 23:36 ` Jakub Kicinski
2021-05-15 13:09 ` Peter Zijlstra
2021-05-15 19:06 ` 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=87fsyp2f8s.ffs@nanos.tec.linutronix.de \
--to=tglx@linutronix.de \
--cc=bp@alien8.de \
--cc=davem@davemloft.net \
--cc=hayeswang@realtek.com \
--cc=kuba@kernel.org \
--cc=lee.jones@linaro.org \
--cc=linux-usb@vger.kernel.org \
--cc=msvec@suse.com \
--cc=netdev@vger.kernel.org \
--cc=treding@nvidia.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).