app/flow-perf: add multi-core rule insertion and deletion
[dpdk.git] / app / test-flow-perf / config.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2020 Mellanox Technologies, Ltd
3  */
4
5 #define FLOW_ITEM_MASK(_x) (UINT64_C(1) << _x)
6 #define FLOW_ACTION_MASK(_x) (UINT64_C(1) << _x)
7 #define FLOW_ATTR_MASK(_x) (UINT64_C(1) << _x)
8 #define GET_RSS_HF() (ETH_RSS_IP | ETH_RSS_TCP)
9
10 /* Configuration */
11 #define RXQ_NUM 4
12 #define TXQ_NUM 4
13 #define TOTAL_MBUF_NUM 32000
14 #define MBUF_SIZE 2048
15 #define MBUF_CACHE_SIZE 512
16 #define NR_RXD  256
17 #define NR_TXD  256
18 #define MAX_PORTS 64
19
20 /* This is used for encap/decap & header modify actions.
21  * When it's 1: it means all actions have fixed values.
22  * When it's 0: it means all actions will have different values.
23  */
24 #define FIXED_VALUES 1
25
26 /* Items/Actions parameters */
27 #define JUMP_ACTION_TABLE 2
28 #define VLAN_VALUE 1
29 #define VNI_VALUE 1
30 #define META_DATA 1
31 #define TAG_INDEX 0
32 #define PORT_ID_DST 1
33 #define TEID_VALUE 1
34
35 /* Flow items/acctions max size */
36 #define MAX_ITEMS_NUM 32
37 #define MAX_ACTIONS_NUM 32
38 #define MAX_ATTRS_NUM 16