Remove tx task spinning added in r333686

This caused issues with PASTE.  Just remove the reschedule since the DELAY()
should be enough for use cases such as pkt-gen which were failing before the
change.

Reported by:	Michio Honda
Sponsored by:	Limelight Networks
This commit is contained in:
Stephen Hurd 2018-06-08 21:49:19 +00:00
parent 4e180881ae
commit 3ab4a96085
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=334862

View File

@ -3728,16 +3728,6 @@ _task_fn_tx(void *context)
*/
if (ctx->isc_txd_credits_update(ctx->ifc_softc, txq->ift_id, false))
netmap_tx_irq(ifp, txq->ift_id);
else {
#ifdef DEV_NETMAP
if (!(ctx->ifc_flags & IFC_NETMAP_TX_IRQ)) {
struct netmap_kring *kring = NA(ctx->ifc_ifp)->tx_rings[txq->ift_id];
if (kring->nr_hwtail != nm_prev(kring->rhead, kring->nkr_num_slots - 1))
GROUPTASK_ENQUEUE(&txq->ift_task);
}
#endif
}
IFDI_TX_QUEUE_INTR_ENABLE(ctx, txq->ift_id);
return;
}