[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20200911085358.5fdd3f23@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com>
Date: Fri, 11 Sep 2020 08:53:58 -0700
From: Jakub Kicinski <kuba@...nel.org>
To: Edward Cree <ecree@...arflare.com>
Cc: <linux-net-drivers@...arflare.com>, <davem@...emloft.net>,
<netdev@...r.kernel.org>
Subject: Re: [PATCH net-next 1/7] sfc: decouple TXQ type from label
On Thu, 10 Sep 2020 21:31:29 +0100 Edward Cree wrote:
> diff --git a/drivers/net/ethernet/sfc/tx.c b/drivers/net/ethernet/sfc/tx.c
> index 48d91b26f1a2..b0a08d9f4773 100644
> --- a/drivers/net/ethernet/sfc/tx.c
> +++ b/drivers/net/ethernet/sfc/tx.c
> @@ -527,6 +527,12 @@ netdev_tx_t efx_hard_start_xmit(struct sk_buff *skb,
> }
>
> tx_queue = efx_get_tx_queue(efx, index, type);
> + if (WARN_ON(!tx_queue))
_ONCE
> + /* We don't have a TXQ of the right type.
> + * This should never happen, as we don't advertise offload
> + * features unless we can support them.
> + */
> + return NETDEV_TX_BUSY;
You should probably drop this packet, right? Next time qdisc calls the
driver it's unlikely to find a queue it needs.
> return __efx_enqueue_skb(tx_queue, skb);
> }
Powered by blists - more mailing lists