DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] net/i40e: increase descriptor queue length to 8160
@ 2024-05-27 16:19 Igor Gutorov
  2024-06-03 10:41 ` Igor Gutorov
  2024-06-18 12:12 ` Bruce Richardson
  0 siblings, 2 replies; 6+ messages in thread
From: Igor Gutorov @ 2024-05-27 16:19 UTC (permalink / raw)
  To: Yuying.Zhang; +Cc: dev, Igor Gutorov

According to the Intel X710/XXV710/XL710 Datasheet, the maximum receive
queue descriptor length is 0x1FE0 (8160 in base 10). This is specified
as QLEN in table 8-12, page 1083.

I've tested this change with an XXV710 NIC and it has positive effect on
performance under high load scenarios. Where previously I'd get
~2000 packets/sec miss rate, now I get only ~40 packets/sec miss rate.

Signed-off-by: Igor Gutorov <igootorov@gmail.com>
---
 drivers/net/i40e/i40e_rxtx.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/i40e/i40e_rxtx.h b/drivers/net/i40e/i40e_rxtx.h
index 2f2f890855..33fc9770d9 100644
--- a/drivers/net/i40e/i40e_rxtx.h
+++ b/drivers/net/i40e/i40e_rxtx.h
@@ -25,7 +25,7 @@
 #define I40E_RX_MAX_DATA_BUF_SIZE	(16 * 1024 - 128)
 
 #define	I40E_MIN_RING_DESC	64
-#define	I40E_MAX_RING_DESC	4096
+#define	I40E_MAX_RING_DESC	8160
 
 #define I40E_FDIR_NUM_TX_DESC   (I40E_FDIR_PRG_PKT_CNT << 1)
 #define I40E_FDIR_NUM_RX_DESC   (I40E_FDIR_PRG_PKT_CNT << 1)
-- 
2.45.1


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-06-28 12:28 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-27 16:19 [PATCH] net/i40e: increase descriptor queue length to 8160 Igor Gutorov
2024-06-03 10:41 ` Igor Gutorov
2024-06-05 10:47   ` Igor Gutorov
2024-06-06  9:18     ` Morten Brørup
2024-06-18 12:12 ` Bruce Richardson
2024-06-28 12:28   ` Bruce Richardson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).