RE: Re:RE: Re:RE: Re:RE: [EXTERNAL] [PATCH] test/graph: fix graph autotest second test failure

2024-10-28 Thread Kiran Kumar Kokkilagadda
> -Original Message- > From: Huichao Cai > Sent: Friday, October 25, 2024 3:01 PM > To: Kiran Kumar Kokkilagadda > Cc: Jerin Jacob ; Nithin Kumar Dabilpuram > ; yanzhirun_...@163.com; dev@dpdk.org > Subject: Re:RE: Re:RE: Re:RE: [EXTERNAL] [PATCH] test/graph:

Re:RE: Re:RE: Re:RE: [EXTERNAL] [PATCH] test/graph: fix graph autotest second test failure

2024-10-25 Thread Huichao Cai
>We can fix this node id issue also. Something similar to this has been fixed >for graph id >Recently. We can do the same thing for node id as well. >https://patches.dpdk.org/project/dpdk/patch/20240618092324.54166-2-rja...@redhat.com/ So will you be able to complete this change in the near fu

RE: Re:RE: Re:RE: [EXTERNAL] [PATCH] test/graph: fix graph autotest second test failure

2024-10-25 Thread Kiran Kumar Kokkilagadda
> -Original Message- > From: Huichao Cai > Sent: Thursday, October 24, 2024 12:17 PM > To: Kiran Kumar Kokkilagadda > Cc: Jerin Jacob ; Nithin Kumar Dabilpuram > ; yanzhirun_...@163.com; dev@dpdk.org > Subject: Re:RE: Re:RE: [EXTERNAL] [PATCH] test/graph: fix gr

Re:RE: Re:RE: [EXTERNAL] [PATCH] test/graph: fix graph autotest second test failure

2024-10-23 Thread Huichao Cai
There is a problem with deleting static nodes: the node ID is recorded using the global variable node_id, which is continuously increasing. If an intermediate node is deleted, the node ID will appear empty, which can introduce some problems, such as how to choose the node ID for cloning later

RE: Re:RE: [EXTERNAL] [PATCH] test/graph: fix graph autotest second test failure

2024-10-23 Thread Kiran Kumar Kokkilagadda
> -Original Message- > From: Huichao Cai > Sent: Wednesday, October 23, 2024 8:15 AM > To: Kiran Kumar Kokkilagadda > Cc: Jerin Jacob ; Nithin Kumar Dabilpuram > ; yanzhirun_...@163.com; dev@dpdk.org > Subject: Re:RE: [EXTERNAL] [PATCH] test/graph: fix graph

Re:RE: [EXTERNAL] [PATCH] test/graph: fix graph autotest second test failure

2024-10-22 Thread Huichao Cai
At present rte_graph_destroy will only clean up the struct rte_node and struct graph_node, not the struct node, rte_node_clone creates the struct node, inserts the global node_list linked list, there is no function to clean up the node_list linked list, if you want to clean up the node create

RE: [EXTERNAL] [PATCH] test/graph: fix graph autotest second test failure

2024-10-22 Thread Kiran Kumar Kokkilagadda
From: Huichao cai Sent: Tuesday, October 22, 2024 4:58 PM To: Jerin Jacob ; Kiran Kumar Kokkilagadda ; Nithin Kumar Dabilpuram ; yanzhirun_...@163.com Cc: dev@dpdk.org Subject: [EXTERNAL] [PATCH] test/graph: fix graph autotest second test failure Start dpdk-test, execute the graph_autotest

[PATCH] test/graph: fix graph autotest second test failure

2024-10-22 Thread Huichao cai
Start dpdk-test, execute the graph_autotest test command for the first time, the result is successful, and then test again, the result is always failing, modify this problem to make this test command idempotent. Signed-off-by: Huichao cai --- app/test/test_graph.c | 21 - 1 f