[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <AM9PR04MB83979C1C47471719E6688B0F96B19@AM9PR04MB8397.eurprd04.prod.outlook.com>
Date: Thu, 7 Oct 2021 07:59:25 +0000
From: Claudiu Manoil <claudiu.manoil@....com>
To: Ioana Ciornei <ioana.ciornei@....com>,
"davem@...emloft.net" <davem@...emloft.net>,
"kuba@...nel.org" <kuba@...nel.org>
CC: "netdev@...r.kernel.org" <netdev@...r.kernel.org>,
Vladimir Oltean <vladimir.oltean@....com>
Subject: RE: [PATCH net-next 2/2] net: enetc: add support for software TSO
> -----Original Message-----
> From: Ioana Ciornei <ioana.ciornei@....com>
> Sent: Wednesday, October 6, 2021 11:13 PM
[...]
> +static int enetc_map_tx_tso_buffs(struct enetc_bdr *tx_ring, struct
> sk_buff *skb)
> +{
> + int hdr_len, total_len, data_len;
> + struct enetc_tx_swbd *tx_swbd;
> + union enetc_tx_bd *txbd;
> + struct tso_t tso;
> + __wsum csum, csum2;
> + int count = 0, pos;
> + int err, i;
> +
> + /* Check that we have enough BDs for this skb */
> + if (enetc_bd_unused(tx_ring) < tso_count_descs(skb)) {
> + if (net_ratelimit())
> + netdev_err(tx_ring->ndev, "Not enough BDs for TSO!\n");
> + return 0;
> + }
> +
On this path, in case the interface is congested, you will drop the packet in the driver,
and the stack will think transmission was successful and will continue to deliver skbs
to the driver. Is this the right thing to do?
Powered by blists - more mailing lists