Re: [PATCH v3] graph: remove the useless duplicate name check

2022-03-07 Thread Thomas Monjalon
07/03/2022 13:47, Jerin Jacob: > On Mon, Mar 7, 2022 at 4:30 PM Haiyue Wang wrote: > > > > The node clone API parameter 'name' is the new node's postfix name, not > > the final node name, so it makes no sense to check it. And the new name > > will be checked duplicate when calling API '__rte_node_

Re: [PATCH v3] graph: remove the useless duplicate name check

2022-03-07 Thread Jerin Jacob
On Mon, Mar 7, 2022 at 4:30 PM Haiyue Wang wrote: > > The node clone API parameter 'name' is the new node's postfix name, not > the final node name, so it makes no sense to check it. And the new name > will be checked duplicate when calling API '__rte_node_register'. > > And update the test case t

[PATCH v3] graph: remove the useless duplicate name check

2022-03-07 Thread Haiyue Wang
The node clone API parameter 'name' is the new node's postfix name, not the final node name, so it makes no sense to check it. And the new name will be checked duplicate when calling API '__rte_node_register'. And update the test case to call clone API twice to check the real name duplicate. Sign