Page MenuHomeFreeBSD

iflib: netmap: honor netmap_irx_irq return values
ClosedPublic

Authored by vmaffione on Jun 6 2020, 11:32 AM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, May 14, 10:46 AM
Unknown Object (File)
Wed, May 13, 6:33 AM
Unknown Object (File)
Sun, May 10, 7:44 PM
Unknown Object (File)
Sun, May 10, 1:03 AM
Unknown Object (File)
Fri, May 8, 8:50 PM
Unknown Object (File)
Sat, May 2, 10:29 PM
Unknown Object (File)
Fri, May 1, 9:28 PM
Unknown Object (File)
Thu, Apr 30, 2:44 AM
Subscribers

Details

Summary

In the receive interrupt routine, always call netmap_rx_irq(). The latter function will return != NM_IRQ_PASS if netmap is not active on that specific receive queue, so that the driver can go on with iflib_rxeof(). Note that netmap supports partial opening, where only a subset of the RX or TX rings can be open in netmap mode. Checking the IFCAP_NETMAP flag is not enough to make sure that the queue is indeed in netmap mode.
Moreover, in case netmap_rx_irq() returns NM_IRQ_RESCHED, it means that netmap expects the driver to call netmap_rx_irq() again as soon as possible. Currently, this may happen when the device is attached to a VALE switch.

Diff Detail

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