From: Jakub Kicinski <kuba@kernel.org>
To: Marek Vasut <marex@denx.de>
Cc: netdev@vger.kernel.org, Ronald Wahl <ronald.wahl@raritan.com>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Paolo Abeni <pabeni@redhat.com>, Simon Horman <horms@kernel.org>
Subject: Re: [net,PATCH v2] net: ks8851: Queue RX packets in IRQ handler instead of disabling BHs
Date: Tue, 30 Apr 2024 19:10:42 -0700 [thread overview]
Message-ID: <20240430191042.05aad656@kernel.org> (raw)
In-Reply-To: <20240430194401.118950-1-marex@denx.de>
On Tue, 30 Apr 2024 21:43:34 +0200 Marek Vasut wrote:
> diff --git a/drivers/net/ethernet/micrel/ks8851.h b/drivers/net/ethernet/micrel/ks8851.h
> index 31f75b4a67fd7..f311074ea13bc 100644
> --- a/drivers/net/ethernet/micrel/ks8851.h
> +++ b/drivers/net/ethernet/micrel/ks8851.h
> @@ -399,6 +399,7 @@ struct ks8851_net {
>
> struct work_struct rxctrl_work;
>
> + struct sk_buff_head rxq;
> struct sk_buff_head txq;
> unsigned int queued_len;
One more round, sorry, this structure has a kdoc, please fill in
the description for the new member.
> @@ -408,7 +406,8 @@ static irqreturn_t ks8851_irq(int irq, void *_ks)
> if (status & IRQ_LCI)
> mii_check_link(&ks->mii);
>
> - local_bh_enable();
> + while (!skb_queue_empty(&ks->rxq))
> + netif_rx(__skb_dequeue(&ks->rxq));
Personal preference and probably not worth retesting but FWIW I'd write
this as:
while ((skb = __skb_dequeue(&ks->rxq)))
netif_rx(skb);
--
pw-bot: cr
next prev parent reply other threads:[~2024-05-01 2:10 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-30 19:43 [net,PATCH v2] net: ks8851: Queue RX packets in IRQ handler instead of disabling BHs Marek Vasut
2024-05-01 2:10 ` Jakub Kicinski [this message]
2024-05-01 2:39 ` Eric Dumazet
2024-05-03 0:47 ` Marek Vasut
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=20240430191042.05aad656@kernel.org \
--to=kuba@kernel.org \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=horms@kernel.org \
--cc=marex@denx.de \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=ronald.wahl@raritan.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.