2019-06-25 11:12:58 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
* Copyright(c) 2010-2018 Intel Corporation
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _MAIN_H_
|
|
|
|
#define _MAIN_H_
|
|
|
|
|
|
|
|
|
|
|
|
#define MAX_LCORE_PARAMS 1024
|
|
|
|
struct lcore_params {
|
|
|
|
uint16_t port_id;
|
2024-10-17 10:26:34 +00:00
|
|
|
uint16_t queue_id;
|
|
|
|
uint32_t lcore_id;
|
2019-06-25 11:12:58 +00:00
|
|
|
} __rte_cache_aligned;
|
|
|
|
|
|
|
|
extern struct lcore_params *lcore_params;
|
|
|
|
extern uint16_t nb_lcore_params;
|
|
|
|
extern struct lcore_params lcore_params_array[];
|
|
|
|
|
|
|
|
#endif /* _MAIN_H_ */
|