f-stack/dpdk/lib/graph/rte_graph_worker.h

48 lines
1.1 KiB
C

/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(C) 2020 Marvell International Ltd.
* Copyright(C) 2023 Intel Corporation
*/
#ifndef _RTE_GRAPH_WORKER_H_
#define _RTE_GRAPH_WORKER_H_
#ifdef __cplusplus
extern "C" {
#endif
#include "rte_graph_model_rtc.h"
#include "rte_graph_model_mcore_dispatch.h"
/**
* Perform graph walk on the circular buffer and invoke the process function
* of the nodes and collect the stats.
*
* @param graph
* Graph pointer returned from rte_graph_lookup function.
*
* @see rte_graph_lookup()
*/
static inline void
rte_graph_walk(struct rte_graph *graph)
{
#if defined(RTE_GRAPH_MODEL_SELECT) && (RTE_GRAPH_MODEL_SELECT == RTE_GRAPH_MODEL_RTC)
rte_graph_walk_rtc(graph);
#elif defined(RTE_GRAPH_MODEL_SELECT) && (RTE_GRAPH_MODEL_SELECT == RTE_GRAPH_MODEL_MCORE_DISPATCH)
rte_graph_walk_mcore_dispatch(graph);
#else
switch (rte_graph_worker_model_no_check_get(graph)) {
case RTE_GRAPH_MODEL_MCORE_DISPATCH:
rte_graph_walk_mcore_dispatch(graph);
break;
default:
rte_graph_walk_rtc(graph);
}
#endif
}
#ifdef __cplusplus
}
#endif
#endif /* _RTE_GRAPH_WORKER_H_ */