<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<style type="text/css" style="display:none;"> P {margin-top:0;margin-bottom:0;} </style>
</head>
<body dir="ltr">
<div class="elementToProof" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
Hi </div>
<div class="elementToProof" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<a href="mailto:dsosnowski@nvidia.com" id="OWAAM913068" class="tWKOu mention ms-bgc-nlr ms-fcl-b">@Dariusz Sosnowski</a> Can you comment on this patch? Thanks.</div>
<div class="elementToProof" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div id="Signature">
<p>BR</p>
<p>Rongwei</p>
<p> </p>
</div>
<div id="appendonsend"></div>
<hr style="display:inline-block;width:98%" tabindex="-1">
<div id="divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" style="font-size:11pt" color="#000000"><b>From:</b> Rongwei Liu <rongweil@nvidia.com><br>
<b>Sent:</b> Monday, May 27, 2024 10:47<br>
<b>To:</b> dev@dpdk.org <dev@dpdk.org>; Matan Azrad <matan@nvidia.com>; Slava Ovsiienko <viacheslavo@nvidia.com>; Ori Kam <orika@nvidia.com>; Suanming Mou <suanmingm@nvidia.com>; NBU-Contact-Thomas Monjalon (EXTERNAL) <thomas@monjalon.net><br>
<b>Cc:</b> Michael Baum <michaelba@nvidia.com>; stable@dpdk.org <stable@dpdk.org>; Aman Singh <aman.deep.singh@intel.com>; Yuying Zhang <yuying.zhang@intel.com>; Ferruh Yigit <ferruh.yigit@amd.com>; Dariusz Sosnowski <dsosnowski@nvidia.com><br>
<b>Subject:</b> [PATCH v2 1/4] app/testpmd: fix the testpmd field string sequence</font>
<div> </div>
</div>
<div class="BodyFragment"><font size="2"><span style="font-size:11pt;">
<div class="PlainText">External email: Use caution opening links or attachments<br>
<br>
<br>
The field string should be in the same order as the rte_flow_field_id<br>
enumration definitions<br>
<br>
Fixes: bfc007802 ("ethdev: allow modifying IPv6 FL and TC fields")<br>
Cc: michaelba@nvidia.com<br>
Cc: stable@dpdk.org<br>
<br>
Signed-off-by: Rongwei Liu <rongweil@nvidia.com><br>
---<br>
 app/test-pmd/cmdline_flow.c | 4 ++--<br>
 1 file changed, 2 insertions(+), 2 deletions(-)<br>
<br>
diff --git a/app/test-pmd/cmdline_flow.c b/app/test-pmd/cmdline_flow.c<br>
index 60ee9337cf..775ce20fc4 100644<br>
--- a/app/test-pmd/cmdline_flow.c<br>
+++ b/app/test-pmd/cmdline_flow.c<br>
@@ -1002,10 +1002,10 @@ static const char *const flow_field_ids[] = {<br>
        "hash_result",<br>
        "geneve_opt_type", "geneve_opt_class", "geneve_opt_data", "mpls",<br>
        "tcp_data_off", "ipv4_ihl", "ipv4_total_len", "ipv6_payload_len",<br>
-       "random",<br>
        "ipv4_proto",<br>
-       "esp_spi", "esp_seq_num", "esp_proto",<br>
        "ipv6_flow_label", "ipv6_traffic_class",<br>
+       "esp_spi", "esp_seq_num", "esp_proto",<br>
+       "random",<br>
        NULL<br>
 };<br>
<br>
--<br>
2.27.0<br>
<br>
</div>
</span></font></div>
</body>
</html>