DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] app/testpmd: enhance GTP support
@ 2020-03-16  8:14 Dekel Peled
  2020-03-24  9:58 ` Ori Kam
  2020-03-25  8:12 ` [dpdk-dev] [PATCH v2] " Dekel Peled
  0 siblings, 2 replies; 9+ messages in thread
From: Dekel Peled @ 2020-03-16  8:14 UTC (permalink / raw)
  To: orika, wenzhuo.lu, jingjing.wu, bernard.iremonger; +Cc: matan, dev

This patch adds CLI option to enter the v_pt_rsv_flags value for GTP
flow pattern item.
It also adds GTP as valid item in raw_encap nad raw_decap setting.

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

diff --git a/app/test-pmd/cmdline_flow.c b/app/test-pmd/cmdline_flow.c
index a781545..cc1bd19 100644
--- a/app/test-pmd/cmdline_flow.c
+++ b/app/test-pmd/cmdline_flow.c
@@ -170,6 +170,7 @@ enum index {
 	ITEM_FUZZY,
 	ITEM_FUZZY_THRESH,
 	ITEM_GTP,
+	ITEM_GTP_FLAGS,
 	ITEM_GTP_MSG_TYPE,
 	ITEM_GTP_TEID,
 	ITEM_GTPC,
@@ -938,6 +939,7 @@ struct parse_action_priv {
 };
 
 static const enum index item_gtp[] = {
+	ITEM_GTP_FLAGS,
 	ITEM_GTP_MSG_TYPE,
 	ITEM_GTP_TEID,
 	ITEM_NEXT,
@@ -2347,6 +2349,13 @@ static int comp_set_raw_index(struct context *, const struct token *,
 		.next = NEXT(item_gtp),
 		.call = parse_vc,
 	},
+	[ITEM_GTP_FLAGS] = {
+		.name = "v_pt_rsv_flags",
+		.help = "GTP flags",
+		.next = NEXT(item_gtp, NEXT_ENTRY(UNSIGNED), item_param),
+		.args = ARGS(ARGS_ENTRY_HTON(struct rte_flow_item_gtp,
+					     v_pt_rsv_flags)),
+	},
 	[ITEM_GTP_MSG_TYPE] = {
 		.name = "msg_type",
 		.help = "GTP message type",
@@ -6604,6 +6613,9 @@ static int comp_set_raw_index(struct context *, const struct token *,
 			size = sizeof(struct rte_flow_item_ah);
 			proto = 0x33;
 			break;
+		case RTE_FLOW_ITEM_TYPE_GTP:
+			size = sizeof(struct rte_flow_item_gtp);
+			break;
 		case RTE_FLOW_ITEM_TYPE_PFCP:
 			size = sizeof(struct rte_flow_item_pfcp);
 			break;
-- 
1.8.3.1


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

end of thread, other threads:[~2020-04-06 15:42 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-16  8:14 [dpdk-dev] [PATCH] app/testpmd: enhance GTP support Dekel Peled
2020-03-24  9:58 ` Ori Kam
2020-03-24 12:39   ` Dekel Peled
2020-03-25  8:12 ` [dpdk-dev] [PATCH v2] " Dekel Peled
2020-03-25  8:27   ` Ori Kam
2020-03-29  9:20     ` Dekel Peled
2020-04-06 11:05       ` Dekel Peled
2020-04-06 11:16         ` Ferruh Yigit
2020-04-06 15:41     ` 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).