From: Simon Horman <horms@kernel.org>
To: Michal Pecio <michal.pecio@gmail.com>
Cc: Petko Manolov <petkan@nucleusys.com>,
Andrew Lunn <andrew+netdev@lunn.ch>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
linux-usb@vger.kernel.org, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH net] net: usb: rtl8150: Fix frame padding
Date: Mon, 13 Oct 2025 10:57:51 +0100 [thread overview]
Message-ID: <aOzNH0OQZYJYS1IT@horms.kernel.org> (raw)
In-Reply-To: <20251012220042.4ca776b1.michal.pecio@gmail.com>
On Sun, Oct 12, 2025 at 10:00:42PM +0200, Michal Pecio wrote:
> TX frames aren't padded and unknown memory is sent into the ether.
>
> Theoretically, it isn't even guaranteed that the extra memory exists
> and can be sent out, which could cause further problems. In practice,
> I found that plenty of tailroom exists in the skb itself (in my test
> with ping at least) and skb_padto() easily succeeds, so use it here.
>
> In the event of -ENOMEM drop the frame like other drivers do.
>
> The use of one more padding byte instead of a USB zero-length packet
> is retained to avoid regression. I have a dodgy Etron xHCI controller
> which doesn't seem to support sending ZLPs at all.
>
> Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
> Cc: stable@vger.kernel.org
> Signed-off-by: Michal Pecio <michal.pecio@gmail.com>
> ---
> drivers/net/usb/rtl8150.c | 9 +++++++--
> 1 file changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/usb/rtl8150.c b/drivers/net/usb/rtl8150.c
> index 92add3daadbb..d6dce8babae0 100644
> --- a/drivers/net/usb/rtl8150.c
> +++ b/drivers/net/usb/rtl8150.c
> @@ -685,9 +685,14 @@ static netdev_tx_t rtl8150_start_xmit(struct sk_buff *skb,
> rtl8150_t *dev = netdev_priv(netdev);
> int count, res;
>
> + /* pad the frame and ensure terminating USB packet, datasheet 9.2.3 */
> + count = max(skb->len, ETH_ZLEN);
> + if (count % 64 == 0)
> + count++;
> + if (skb_padto(skb, count))
> +
Hi Michal,
I think this should also increment a dropped counter.
As this driver already uses dev->netdev->stats [*]
I think that would be:
dev->netdev->stats.tx_dropped++;
[*] I specifically mention this, for the record because,
new users are discouraged. But this driver is an existing user
so I think we are ok.
> + return NETDEV_TX_OK;
> netif_stop_queue(netdev);
> - count = (skb->len < 60) ? 60 : skb->len;
> - count = (count & 0x3f) ? count : count + 1;
> dev->tx_skb = skb;
> usb_fill_bulk_urb(dev->tx_urb, dev->udev, usb_sndbulkpipe(dev->udev, 2),
> skb->data, count, write_bulk_callback, dev);
> --
> 2.48.1
>
next prev parent reply other threads:[~2025-10-13 9:57 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-12 20:00 [PATCH net] net: usb: rtl8150: Fix frame padding Michal Pecio
2025-10-13 9:57 ` Simon Horman [this message]
2025-10-13 10:50 ` Michal Pecio
2025-10-13 12:35 ` Simon Horman
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=aOzNH0OQZYJYS1IT@horms.kernel.org \
--to=horms@kernel.org \
--cc=andrew+netdev@lunn.ch \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=michal.pecio@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=petkan@nucleusys.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).