* [dpdk-dev] [PATCH] app/testpmd: fix support for shared age action query
@ 2021-02-04 10:04 Dekel Peled
2021-02-04 16:31 ` [dpdk-dev] [dpdk-stable] " Ferruh Yigit
0 siblings, 1 reply; 2+ messages in thread
From: Dekel Peled @ 2021-02-04 10:04 UTC (permalink / raw)
To: wenzhuo.lu, xiaoyun.li, bernard.iremonger; +Cc: matan, dev, stable
Shared age action query was implemented as part of flow query,
but was not implemented as part of shared action query.
This patch adds the required implementation.
Fixes: 2f622174bf86 ("app/testpmd: support query of age action")
Cc: stable@dpdk.org
Signed-off-by: Dekel Peled <dekelp@nvidia.com>
Acked-by: Matan Azrad <matan@nvidia.com>
---
app/test-pmd/config.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/app/test-pmd/config.c b/app/test-pmd/config.c
index 0e2b9f7d3c..dab8afe5dd 100644
--- a/app/test-pmd/config.c
+++ b/app/test-pmd/config.c
@@ -1879,6 +1879,7 @@ port_shared_action_query(portid_t port_id, uint32_t id)
return -EINVAL;
switch (psa->type) {
case RTE_FLOW_ACTION_TYPE_RSS:
+ case RTE_FLOW_ACTION_TYPE_AGE:
data = &default_data;
break;
default:
@@ -1895,6 +1896,20 @@ port_shared_action_query(portid_t port_id, uint32_t id)
*((uint32_t *)data));
data = NULL;
break;
+ case RTE_FLOW_ACTION_TYPE_AGE:
+ if (!ret) {
+ struct rte_flow_query_age *resp = data;
+
+ printf("AGE:\n"
+ " aged: %u\n"
+ " sec_since_last_hit_valid: %u\n"
+ " sec_since_last_hit: %" PRIu32 "\n",
+ resp->aged,
+ resp->sec_since_last_hit_valid,
+ resp->sec_since_last_hit);
+ }
+ data = NULL;
+ break;
default:
printf("Shared action %u (type: %d) on port %u doesn't support"
" query\n", id, psa->type, port_id);
@@ -1902,6 +1917,7 @@ port_shared_action_query(portid_t port_id, uint32_t id)
}
return ret;
}
+
static struct port_flow_tunnel *
port_flow_tunnel_offload_cmd_prep(portid_t port_id,
const struct rte_flow_item *pattern,
--
2.25.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [dpdk-dev] [dpdk-stable] [PATCH] app/testpmd: fix support for shared age action query
2021-02-04 10:04 [dpdk-dev] [PATCH] app/testpmd: fix support for shared age action query Dekel Peled
@ 2021-02-04 16:31 ` Ferruh Yigit
0 siblings, 0 replies; 2+ messages in thread
From: Ferruh Yigit @ 2021-02-04 16:31 UTC (permalink / raw)
To: Dekel Peled, wenzhuo.lu, xiaoyun.li, bernard.iremonger; +Cc: matan, dev, stable
On 2/4/2021 10:04 AM, Dekel Peled wrote:
> Shared age action query was implemented as part of flow query,
> but was not implemented as part of shared action query.
>
> This patch adds the required implementation.
>
> Fixes: 2f622174bf86 ("app/testpmd: support query of age action")
> Cc: stable@dpdk.org
>
> Signed-off-by: Dekel Peled <dekelp@nvidia.com>
> Acked-by: Matan Azrad <matan@nvidia.com>
Applied to dpdk-next-net/main, thanks.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-02-04 16:31 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-04 10:04 [dpdk-dev] [PATCH] app/testpmd: fix support for shared age action query Dekel Peled
2021-02-04 16:31 ` [dpdk-dev] [dpdk-stable] " 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).