1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-21 07:15:49 +00:00

Revert "ixl: Increase tx/rx ring size to 8160"

iflib enforces powerof2 on the ring size:
panic: Assertion powerof2(sctx->isc_nrxd_max[i])

Revert until this change is better understood.

Reported by:	tuexen

This reverts commit 14561f1eda.
This commit is contained in:
Kevin Bowling 2024-09-24 03:58:50 -07:00
parent c9021340a3
commit bf085659da

View File

@ -122,7 +122,7 @@
* The driver currently always uses 32 byte Rx descriptors.
*/
#define IXL_DEFAULT_RING 1024
#define IXL_MAX_RING 8160
#define IXL_MAX_RING 4096
#define IXL_MIN_RING 64
#define IXL_RING_INCREMENT 32