lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Fri, 16 Dec 2022 13:54:56 -0800 From: Dmitry Torokhov <dmitry.torokhov@...il.com> To: Eric Dumazet <edumazet@...gle.com> Cc: Marek Vasut <marex@...x.de>, netdev@...r.kernel.org, "David S. Miller" <davem@...emloft.net>, Geoff Levand <geoff@...radead.org>, Jakub Kicinski <kuba@...nel.org>, Linus Walleij <linus.walleij@...aro.org>, Paolo Abeni <pabeni@...hat.com>, Petr Machata <petrm@...dia.com>, Wolfram Sang <wsa+renesas@...g-engineering.com> Subject: Re: [PATCH] net: ks8851: Drop IRQ threading On Fri, Dec 16, 2022 at 02:23:04PM +0100, Eric Dumazet wrote: > On Fri, Dec 16, 2022 at 1:47 PM Marek Vasut <marex@...x.de> wrote: > > > > Request non-threaded IRQ in the KSZ8851 driver, this fixes the following warning: > > " > > NOHZ tick-stop error: Non-RCU local softirq work is pending, handler #08!!! > > This changelog is a bit terse. > > Why can other drivers use request_threaded_irq(), but not this one ? This one actually *has* to use threading, as (as far as I can see) the "lock" that is being taken in ks8851_irq for the SPI variant of the device is actually a mutex, so we have to be able to sleep in the interrupt handler... > > > > " > > > > Signed-off-by: Marek Vasut <marex@...x.de> > > --- > > Cc: "David S. Miller" <davem@...emloft.net> > > Cc: Dmitry Torokhov <dmitry.torokhov@...il.com> > > Cc: Eric Dumazet <edumazet@...gle.com> > > Cc: Geoff Levand <geoff@...radead.org> > > Cc: Jakub Kicinski <kuba@...nel.org> > > Cc: Linus Walleij <linus.walleij@...aro.org> > > Cc: Paolo Abeni <pabeni@...hat.com> > > Cc: Petr Machata <petrm@...dia.com> > > Cc: Wolfram Sang <wsa+renesas@...g-engineering.com> > > To: netdev@...r.kernel.org > > --- > > drivers/net/ethernet/micrel/ks8851_common.c | 4 +--- > > 1 file changed, 1 insertion(+), 3 deletions(-) > > > > diff --git a/drivers/net/ethernet/micrel/ks8851_common.c b/drivers/net/ethernet/micrel/ks8851_common.c > > index cfbc900d4aeb9..1eba4ba0b95cf 100644 > > --- a/drivers/net/ethernet/micrel/ks8851_common.c > > +++ b/drivers/net/ethernet/micrel/ks8851_common.c > > @@ -443,9 +443,7 @@ static int ks8851_net_open(struct net_device *dev) > > unsigned long flags; > > int ret; > > > > - ret = request_threaded_irq(dev->irq, NULL, ks8851_irq, > > - IRQF_TRIGGER_LOW | IRQF_ONESHOT, > > - dev->name, ks); > > + ret = request_irq(dev->irq, ks8851_irq, IRQF_TRIGGER_LOW, dev->name, ks); > > if (ret < 0) { > > netdev_err(dev, "failed to get irq\n"); > > return ret; > > -- > > 2.35.1 > > Thanks. -- Dmitry
Powered by blists - more mailing lists