DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] net/mlx5: fix inline packet size for ConnectX-4LX
@ 2020-02-20 21:18 Viacheslav Ovsiienko
  2020-02-21  7:37 ` Matan Azrad
  0 siblings, 1 reply; 6+ messages in thread
From: Viacheslav Ovsiienko @ 2020-02-20 21:18 UTC (permalink / raw)
  To: dev; +Cc: matan, rasland, thomas, ferruh.yigit

This patch does extra inline packet size check to tune
the ConnectX-4LX performance in the legacy Multi-Packet Write
mode.

Signed-off-by: Viacheslav Ovsiienko <viacheslavo@mellanox.com>
---
 drivers/net/mlx5/mlx5_rxtx.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/net/mlx5/mlx5_rxtx.c b/drivers/net/mlx5/mlx5_rxtx.c
index b55db4f..0df811b 100644
--- a/drivers/net/mlx5/mlx5_rxtx.c
+++ b/drivers/net/mlx5/mlx5_rxtx.c
@@ -4281,6 +4281,8 @@ enum mlx5_txcmp_code {
 			    loc->mbuf->ol_flags & PKT_TX_DYNF_NOINLINE)
 				goto pointer_empw;
 			if (MLX5_TXOFF_CONFIG(MPW)) {
+				if (dlen > txq->inlen_send)
+					goto pointer_empw;
 				tlen = dlen;
 				if (part == room) {
 					/* Open new inline MPW session. */
-- 
1.8.3.1


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

end of thread, other threads:[~2020-02-21 10:07 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-20 21:18 [dpdk-dev] [PATCH] net/mlx5: fix inline packet size for ConnectX-4LX Viacheslav Ovsiienko
2020-02-21  7:37 ` Matan Azrad
2020-02-21  7:39   ` Slava Ovsiienko
2020-02-21  9:44     ` Ferruh Yigit
2020-02-21  9:51       ` Slava Ovsiienko
2020-02-21 10:07   ` Ferruh Yigit

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).