xref: /dpdk/examples/l3fwd-power/main.h (revision 4b978938168b219346775ff877ac31649a36cba7)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2018 Intel Corporation
3  */
4 
5 #ifndef _MAIN_H_
6 #define _MAIN_H_
7 
8 
9 #define MAX_LCORE_PARAMS 1024
10 struct __rte_cache_aligned lcore_params {
11 	uint16_t port_id;
12 	uint16_t queue_id;
13 	uint32_t lcore_id;
14 };
15 
16 extern struct lcore_params *lcore_params;
17 extern uint16_t nb_lcore_params;
18 extern struct lcore_params lcore_params_array[];
19 
20 #endif /* _MAIN_H_ */
21