Page MenuHomeFreeBSD

Fix first-packet completion
ClosedPublic

Authored by shurd on Nov 28 2018, 3:25 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Apr 11, 8:20 PM
Unknown Object (File)
Thu, Mar 28, 9:28 PM
Unknown Object (File)
Mar 14 2024, 3:05 AM
Unknown Object (File)
Feb 26 2024, 7:22 AM
Unknown Object (File)
Feb 12 2024, 11:09 AM
Unknown Object (File)
Feb 11 2024, 5:33 PM
Unknown Object (File)
Dec 23 2023, 2:11 AM
Unknown Object (File)
Nov 26 2023, 1:32 AM

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 Not Applicable
Unit
Tests Not Applicable

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

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