1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(c) 2023 Marvell. 3 */ 4 5 #ifndef APP_GRAPH_ETHDEV_RX_PRIV_H 6 #define APP_GRAPH_ETHDEV_RX_PRIV_H 7 8 #include <stdint.h> 9 10 #include <rte_graph.h> 11 #include <rte_node_eth_api.h> 12 13 #define MAX_RX_QUEUE_PER_PORT 128 14 #define MAX_JUMBO_PKT_LEN 9600 15 #define NB_SOCKETS 8 16 17 struct __rte_cache_aligned lcore_params { 18 uint16_t port_id; 19 uint8_t queue_id; 20 uint8_t lcore_id; 21 }; 22 23 #endif 24