Flows created with the new asynchronous Flow API lack attributes
(direction, priority, group number). These attributes are part of
a template table for flows created via rte_flow_async_create().

When testpmd tries to list all the flows it accesses flow
attributes via pointer and crashes. Save flow attributes during
the template table creation and use them in the "flow list" output.

Fixes: ecdc927b99 ("app/testpmd: add async flow create/destroy operations")

Signed-off-by: Alexander Kozyrev <akozy...@nvidia.com>
---
 app/test-pmd/config.c  | 5 +++--
 app/test-pmd/testpmd.h | 1 +
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/app/test-pmd/config.c b/app/test-pmd/config.c
index e8a1b77c2a..cc86d9af5f 100644
--- a/app/test-pmd/config.c
+++ b/app/test-pmd/config.c
@@ -2448,6 +2448,8 @@ port_flow_template_table_create(portid_t port_id, 
uint32_t id,
        }
        pt->nb_pattern_templates = nb_pattern_templates;
        pt->nb_actions_templates = nb_actions_templates;
+       rte_memcpy(&pt->flow_attr, &table_attr->flow_attr,
+                  sizeof(struct rte_flow_attr));
        printf("Template table #%u created\n", pt->id);
        return 0;
 }
@@ -2510,7 +2512,6 @@ port_queue_flow_create(portid_t port_id, queueid_t 
queue_id,
                       const struct rte_flow_action *actions)
 {
        struct rte_flow_op_attr op_attr = { .postpone = postpone };
-       struct rte_flow_attr flow_attr = { 0 };
        struct rte_flow *flow;
        struct rte_port *port;
        struct port_flow *pf;
@@ -2570,7 +2571,7 @@ port_queue_flow_create(portid_t port_id, queueid_t 
queue_id,
        }
        job->type = QUEUE_JOB_TYPE_FLOW_CREATE;
 
-       pf = port_flow_new(&flow_attr, pattern, actions, &error);
+       pf = port_flow_new(&pt->flow_attr, pattern, actions, &error);
        if (!pf) {
                free(job);
                return port_flow_complain(&error);
diff --git a/app/test-pmd/testpmd.h b/app/test-pmd/testpmd.h
index 93fdb9d331..248da710a3 100644
--- a/app/test-pmd/testpmd.h
+++ b/app/test-pmd/testpmd.h
@@ -204,6 +204,7 @@ struct port_table {
        uint32_t id; /**< Table ID. */
        uint32_t nb_pattern_templates; /**< Number of pattern templates. */
        uint32_t nb_actions_templates; /**< Number of actions templates. */
+       struct rte_flow_attr flow_attr; /**< Flow attributes. */
        struct rte_flow_template_table *table; /**< PMD opaque template object 
*/
 };
 
-- 
2.18.2

Reply via email to