[intelxl] Increase receive descriptor ring size to 64 entries

The E810 requires that receive descriptor rings have at least 64
entries (and are a multiple of 32 entries).

Signed-off-by: Michael Brown <mcb30@ipxe.org>
pull/697/head^2
Michael Brown 2022-03-09 00:41:01 +00:00
parent 9f5b9e3abb
commit ef70667557
1 changed files with 2 additions and 2 deletions

View File

@ -940,9 +940,9 @@ intelxl_init_ring ( struct intelxl_ring *ring, unsigned int count, size_t len,
/** Number of receive descriptors
*
* Must be a multiple of 32.
* Must be a multiple of 32 and greater than or equal to 64.
*/
#define INTELXL_RX_NUM_DESC 32
#define INTELXL_RX_NUM_DESC 64
/** Receive descriptor ring fill level
*