1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(C) 2020 Marvell. 3 */ 4 #ifndef __CN9K_RTE_FLOW_H__ 5 #define __CN9K_RTE_FLOW_H__ 6 7 #include <rte_flow_driver.h> 8 9 struct rte_flow *cn9k_flow_create(struct rte_eth_dev *dev, const struct rte_flow_attr *attr, 10 const struct rte_flow_item pattern[], 11 const struct rte_flow_action actions[], 12 struct rte_flow_error *error); 13 int cn9k_flow_destroy(struct rte_eth_dev *dev, struct rte_flow *flow, struct rte_flow_error *error); 14 int cn9k_flow_info_get(struct rte_eth_dev *dev, struct rte_flow_port_info *port_info, 15 struct rte_flow_queue_info *queue_info, struct rte_flow_error *err); 16 17 #define CN9K_NPC_COUNTERS_MAX 512 18 19 #endif /* __CN9K_RTE_FLOW_H__ */ 20