Re: [PATCH v3 03/15] graph: move node process into inline function

2023-03-29 Thread Jerin Jacob
On Wed, Mar 29, 2023 at 9:04 PM Stephen Hemminger wrote: > > On Wed, 29 Mar 2023 15:43:28 +0900 > Zhirun Yan wrote: > > > +/** > > + * @internal > > + * > > + * Enqueue a given node to the tail of the graph reel. > > + * > > + * @param graph > > + * Pointer Graph object. > > + * @param node > >

Re: [PATCH v3 03/15] graph: move node process into inline function

2023-03-29 Thread Stephen Hemminger
On Wed, 29 Mar 2023 15:43:28 +0900 Zhirun Yan wrote: > +/** > + * @internal > + * > + * Enqueue a given node to the tail of the graph reel. > + * > + * @param graph > + * Pointer Graph object. > + * @param node > + * Pointer to node object to be enqueued. > + */ > +static __rte_always_inline

[PATCH v3 03/15] graph: move node process into inline function

2023-03-28 Thread Zhirun Yan
Node process is a single and reusable block, move the code into an inline function. Signed-off-by: Haiyue Wang Signed-off-by: Cunming Liang Signed-off-by: Zhirun Yan --- lib/graph/rte_graph_model_rtc.h | 20 ++--- lib/graph/rte_graph_worker_common.h | 33 +++