Skip to content

Commit

Permalink
Fix max num descriptors
Browse files Browse the repository at this point in the history
  • Loading branch information
cardigliano committed Dec 13, 2023
1 parent 19c6b4b commit 631b448
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions drivers/intel/ixgbe/ixgbe-5.19.6-zc/src/ixgbe.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,11 @@
#define IXGBE_MIN_NUM_DESCRIPTORS 64

#ifdef HAVE_PF_RING
#undef IXGBE_MAX_RXD
#undef IXGBE_MAX_TXD
#define IXGBE_MAX_RXD 32768
#define IXGBE_MAX_TXD 32768
#undef IXGBE_MAX_NUM_DESCRIPTORS
#define IXGBE_MAX_NUM_DESCRIPTORS 32768
#undef IXGBE_DEFAULT_RXD
#undef IXGBE_DEFAULT_TXD
#define IXGBE_DEFAULT_RXD 8192
#undef IXGBE_DEFAULT_TXD
#define IXGBE_DEFAULT_TXD 8192
#endif

Expand Down

0 comments on commit 631b448

Please sign in to comment.