1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright 2020 Mellanox Technologies, Ltd 3 * 4 * This file contains the items related methods 5 */ 6 7 #ifndef FLOW_PERF_ITEMS_GEN 8 #define FLOW_PERF_ITEMS_GEN 9 10 #include <stdint.h> 11 #include <rte_flow.h> 12 13 #include "config.h" 14 15 void fill_items(struct rte_flow_item *items, uint64_t *flow_items, 16 uint32_t outer_ip_src, uint8_t core_idx); 17 18 #endif /* FLOW_PERF_ITEMS_GEN */ 19