Page MenuHomeFreeBSD

Work around lack of TX queues in iflib for netmap
ClosedPublic

Authored by shurd on May 16 2018, 4:36 PM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Jun 24, 6:05 AM
Unknown Object (File)
Mon, Jun 22, 12:09 PM
Unknown Object (File)
Sat, Jun 20, 9:28 PM
Unknown Object (File)
Wed, Jun 17, 3:23 PM
Unknown Object (File)
Tue, Jun 16, 4:10 PM
Unknown Object (File)
Jun 4 2026, 11:50 PM
Unknown Object (File)
May 18 2026, 9:30 AM
Unknown Object (File)
May 18 2026, 5:59 AM
Subscribers

Details

Summary

When poll() is called via netmap, txsync is initially called,
and if there are no available buffers to reclaim, it waits for the driver
to notify of new buffers. Since the TX IRQ is generally not used in iflib
drivers, this ends up causing a timeout.

Work around this by having the reclaim DELAY(1) if it's initially unable
to reclaim anything, then schedule the tx task, which will spin by continuously
rescheduling itself until some buffers are reclaimed. In general, the delay is
enough to allow some buffers to be reclaimed, so spinning is minimized.

Test Plan

Test on high-speed links to ensure that the DELAY() doesn't
introduce extra latency.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable