mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-31 10:31:33 -04:00
net: ntb_netdev: Fix TX busy and drop handling
Currently, ntb_netdev returns NETDEV_TX_BUSY for every enqueue error. It also increments the drop and error counters while leaving the skb owned by the qdisc, and may return BUSY with the subqueue still awake. Retrying a permanent error cannot succeed either. The unconditional BUSY return and premature accounting date back to the initial driver. The error-path queue stop was later removed without changing that return value. The current flow-control code includes a resource check, but ntb_netdev does not honor its result before enqueue. Honor the resource check before enqueue. For -EAGAIN and -EBUSY, stop the subqueue, arm the existing reaper timer, and return BUSY without touching the skb. For other errors, free the skb, increment tx_dropped, and return NETDEV_TX_OK. Fixes:548c237c0a("net: Add support for NTB virtual ethernet device") Fixes:d723485cb4("ntb_netdev: remove tx timeout") Fixes:e74bfeedad("NTB: Add flow control to the ntb_netdev") Cc: stable@vger.kernel.org Signed-off-by: Koichiro Den <den@valinux.co.jp> Reviewed-by: Dave Jiang <dave.jiang@intel.com> Link: https://patch.msgid.link/20260817053519.4135287-3-den@valinux.co.jp Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
committed by
Jakub Kicinski
parent
2564963972
commit
8aaa47351d
@@ -199,8 +199,10 @@ static int __ntb_netdev_maybe_stop_tx(struct net_device *netdev,
|
||||
static int ntb_netdev_maybe_stop_tx(struct net_device *ndev,
|
||||
struct ntb_netdev_queue *q, int size)
|
||||
{
|
||||
if (__netif_subqueue_stopped(ndev, q->qid) ||
|
||||
(ntb_transport_tx_free_entry(q->qp) >= size))
|
||||
if (__netif_subqueue_stopped(ndev, q->qid))
|
||||
return -EBUSY;
|
||||
|
||||
if (ntb_transport_tx_free_entry(q->qp) >= size)
|
||||
return 0;
|
||||
|
||||
return __ntb_netdev_maybe_stop_tx(ndev, q, size);
|
||||
@@ -256,21 +258,30 @@ static netdev_tx_t ntb_netdev_start_xmit(struct sk_buff *skb,
|
||||
|
||||
q = &dev->queues[qid];
|
||||
|
||||
ntb_netdev_maybe_stop_tx(ndev, q, tx_stop);
|
||||
if (unlikely(ntb_netdev_maybe_stop_tx(ndev, q, tx_stop)))
|
||||
return NETDEV_TX_BUSY;
|
||||
|
||||
rc = ntb_transport_tx_enqueue(q->qp, skb, skb->data, skb->len);
|
||||
if (rc)
|
||||
goto err;
|
||||
if (rc) {
|
||||
if (rc == -EAGAIN || rc == -EBUSY) {
|
||||
netif_stop_subqueue(ndev, q->qid);
|
||||
mod_timer(&q->tx_timer,
|
||||
jiffies + usecs_to_jiffies(tx_time));
|
||||
return NETDEV_TX_BUSY;
|
||||
}
|
||||
|
||||
goto drop;
|
||||
}
|
||||
|
||||
/* check for next submit */
|
||||
ntb_netdev_maybe_stop_tx(ndev, q, tx_stop);
|
||||
|
||||
return NETDEV_TX_OK;
|
||||
|
||||
err:
|
||||
drop:
|
||||
dev_kfree_skb_any(skb);
|
||||
ndev->stats.tx_dropped++;
|
||||
ndev->stats.tx_errors++;
|
||||
return NETDEV_TX_BUSY;
|
||||
return NETDEV_TX_OK;
|
||||
}
|
||||
|
||||
static void ntb_netdev_tx_timer(struct timer_list *t)
|
||||
|
||||
Reference in New Issue
Block a user