Re: [dpdk-dev] [PATCH v3 04/29] graph: implement node debug routines

2020-04-04 Thread Jerin Jacob
On Sat, Apr 4, 2020 at 1:27 PM Wang, Xiao W wrote: > > +static void > > +node_scan_dump(FILE *f, rte_node_t id, bool all) > > +{ > > + struct node *node; > > + > > + RTE_ASSERT(f != NULL); > > + NODE_ID_CHECK(id); This one is using fail: jump. See below > > + STAILQ_FOREACH(node,

Re: [dpdk-dev] [PATCH v3 04/29] graph: implement node debug routines

2020-04-04 Thread Wang, Xiao W
roe.eu; mattias.ronnb...@ericsson.com; > pbhagavat...@marvell.com; ndabilpu...@marvell.com > Subject: [dpdk-dev] [PATCH v3 04/29] graph: implement node debug routines > > From: Jerin Jacob > > Adding node debug API implementation support to dump > single or all the node objects to

[dpdk-dev] [PATCH v3 04/29] graph: implement node debug routines

2020-03-31 Thread jerinj
From: Jerin Jacob Adding node debug API implementation support to dump single or all the node objects to the given file. Signed-off-by: Jerin Jacob Signed-off-by: Kiran Kumar K Signed-off-by: Pavan Nikhilesh Signed-off-by: Nithin Dabilpuram --- lib/librte_graph/Makefile | 1 +