DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] app/testpmd: fix MPLSoUDP encapsulation
@ 2018-11-19 16:54 Dekel Peled
  2018-11-20  8:23 ` Ori Kam
                   ` (2 more replies)
  0 siblings, 3 replies; 14+ messages in thread
From: Dekel Peled @ 2018-11-19 16:54 UTC (permalink / raw)
  To: wenzhuo.lu, jingjing.wu, bernard.iremonger; +Cc: dev, orika, shahafs, dekelp

Set MPLS label value in appropriate location at mplsoudp_encap_conf,
so it is correctly copied to rte_flow_item_mpls.

Fixes: a1191d39cb57 ("app/testpmd: add MPLSoUDP encapsulation")
Cc: orika@mellanox.com

Signed-off-by: Dekel Peled <dekelp@mellanox.com>
---
 app/test-pmd/cmdline.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c
index 1275074..40e64cc 100644
--- a/app/test-pmd/cmdline.c
+++ b/app/test-pmd/cmdline.c
@@ -15804,10 +15804,10 @@ static void cmd_set_mplsoudp_encap_parsed(void *parsed_result,
 	struct cmd_set_mplsoudp_encap_result *res = parsed_result;
 	union {
 		uint32_t mplsoudp_label;
-		uint8_t label[3];
+		uint8_t label[4];
 	} id = {
 		.mplsoudp_label =
-			rte_cpu_to_be_32(res->label) & RTE_BE32(0x00ffffff),
+			rte_cpu_to_be_32(res->label<<4) & RTE_BE32(0x00ffffff),
 	};
 
 	if (strcmp(res->mplsoudp, "mplsoudp_encap") == 0)
-- 
1.8.3.1

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

end of thread, other threads:[~2018-12-11 17:28 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-19 16:54 [dpdk-dev] [PATCH] app/testpmd: fix MPLSoUDP encapsulation Dekel Peled
2018-11-20  8:23 ` Ori Kam
2018-11-21 15:19   ` Ferruh Yigit
2018-11-21 15:39     ` Ori Kam
2018-11-22  9:04 ` Adrien Mazarguil
2018-11-22  9:56   ` Dekel Peled
2018-11-22 10:14     ` Adrien Mazarguil
2018-11-22 16:18       ` Dekel Peled
2018-11-22 16:39         ` Ferruh Yigit
2018-12-04 13:51 ` [dpdk-dev] [PATCH v2] " Dekel Peled
2018-12-04 21:23   ` Ori Kam
2018-12-06  8:17     ` Dekel Peled
2018-12-06  9:38       ` Ori Kam
2018-12-11 17:28         ` 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).