net/cnxk: fix default MCAM allocation size
authorSatheesh Paul <psatheesh@marvell.com>
Tue, 6 Jul 2021 08:19:18 +0000 (13:49 +0530)
committerJerin Jacob <jerinj@marvell.com>
Mon, 12 Jul 2021 12:44:20 +0000 (14:44 +0200)
Preallocation of MCAM entries is not valid anymore since the
AF side MCAM allocation scheme has changed. This patch disables
preallocation by changing the default MCAM preallocation size
from 8 to 1.

Fixes: 168c59cfe42 ("net/octeontx2: add flow MCAM utility functions")
Cc: stable@dpdk.org
Signed-off-by: Satheesh Paul <psatheesh@marvell.com>
Acked-by: Jerin Jacob <jerinj@marvell.com>
drivers/net/cnxk/cnxk_ethdev_devargs.c

index c76b628..7f20e92 100644 (file)
@@ -116,7 +116,7 @@ cnxk_ethdev_parse_devargs(struct rte_devargs *devargs, struct cnxk_eth_dev *dev)
 {
        uint16_t reta_sz = ROC_NIX_RSS_RETA_SZ_64;
        uint16_t sqb_count = CNXK_NIX_TX_MAX_SQB;
-       uint16_t flow_prealloc_size = 8;
+       uint16_t flow_prealloc_size = 1;
        uint16_t switch_header_type = 0;
        uint16_t flow_max_priority = 3;
        uint16_t rss_tag_as_xor = 0;