[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20201202091852.69a02069@kicinski-fedora-pc1c0hjn.DHCP.thefacebook.com>
Date: Wed, 2 Dec 2020 09:18:52 -0800
From: Jakub Kicinski <kuba@...nel.org>
To: Lukasz Stelmach <l.stelmach@...sung.com>
Cc: Andrew Lunn <andrew@...n.ch>, jim.cromie@...il.com,
Heiner Kallweit <hkallweit1@...il.com>,
"David S. Miller" <davem@...emloft.net>,
Rob Herring <robh+dt@...nel.org>,
Kukjin Kim <kgene@...nel.org>,
Krzysztof Kozlowski <krzk@...nel.org>,
Russell King <linux@...linux.org.uk>, netdev@...r.kernel.org,
devicetree@...r.kernel.org, linux-kernel@...r.kernel.org,
linux-arm-kernel@...ts.infradead.org,
linux-samsung-soc@...r.kernel.org,
Bartłomiej Żolnierkiewicz
<b.zolnierkie@...sung.com>,
Marek Szyprowski <m.szyprowski@...sung.com>
Subject: Re: [PATCH v7 3/3] net: ax88796c: ASIX AX88796C SPI Ethernet
Adapter Driver
On Wed, 02 Dec 2020 11:46:28 +0100 Lukasz Stelmach wrote:
> >> + status = netif_rx(skb);
> >
> > If I'm reading things right this is in process context, so netif_rx_ni()
> >
>
> Is it? The stack looks as follows
>
> ax88796c_skb_return()
> ax88796c_rx_fixup()
> ax88796c_receive()
> ax88796c_process_isr()
> ax88796c_work()
>
> and ax88796c_work() is a scheduled in the system_wq.
Are you asking if work queue gets run in process context? It does.
> >> + if (status != NET_RX_SUCCESS)
> >> + netif_info(ax_local, rx_err, ndev,
> >> + "netif_rx status %d\n", status);
> >
> > Again, it's inadvisable to put per packet prints without any rate
> > limiting in the data path.
>
> Even if limmited by the msglvl flag, which is off by default?
I'd err on the side of caution, but up to you.
Powered by blists - more mailing lists