Page MenuHomeFreeBSD

Fix first-packet completion
ClosedPublic

Authored by shurd on Nov 28 2018, 3:25 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Jul 4, 7:12 AM
Unknown Object (File)
Tue, Jul 1, 11:25 PM
Unknown Object (File)
Wed, Jun 25, 10:02 PM
Unknown Object (File)
Mon, Jun 16, 8:01 PM
Unknown Object (File)
Tue, Jun 10, 6:34 AM
Unknown Object (File)
May 14 2025, 1:18 AM
Unknown Object (File)
May 12 2025, 3:27 AM
Unknown Object (File)
May 10 2025, 7:32 PM

Details

Summary

The first packet after the ring is initialized was never
completed as isc_txd_credits_update() would not include it in the
count of completed packets. This caused netmap to never complete
a batch. See PR 233022 and 233607 for more details.

Test Plan

lev tests all the things!

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 21239
Build 20581: arc lint + arc unit

Event Timeline

It helps for ix, can not test for ixl, as I don't have one/

This revision is now accepted and ready to land.Nov 28 2018, 3:28 PM
This revision was automatically updated to reflect the committed changes.

I know I'm late commenting on this, but I think the correct fix is to initialize tx_cidx_processed to txr->desc_count -1 when we initialize.

head/sys/dev/ixl/ixl_txrx.c
523 ↗(On Diff #51299)

Also, this MPASS seems very fishy. I don't think it's correct.