net/bnxt: fix calculation of number of pools
authorAjit Khaparde <ajit.khaparde@broadcom.com>
Thu, 28 Sep 2017 21:43:25 +0000 (16:43 -0500)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 6 Oct 2017 00:49:49 +0000 (02:49 +0200)
The calculation for number of pools is wrong.
We are wrongly overwriting the calculated value with ETH_64_POOLS.
Accordingly fix the size of ff_pools array.
Fix the log message as well.

Fixes: 4cfe399f6550 ("net/bnxt: support to set VF rxmode")
Cc: stable@dpdk.org
Signed-off-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
drivers/net/bnxt/bnxt.h
drivers/net/bnxt/bnxt_rxq.c

index 405d94d..3579505 100644 (file)
@@ -217,7 +217,7 @@ struct bnxt {
        STAILQ_HEAD(, bnxt_filter_info) free_filter_list;
 
        /* VNIC pointer for flow filter (VMDq) pools */
-#define MAX_FF_POOLS   ETH_64_POOLS
+#define MAX_FF_POOLS   256
        STAILQ_HEAD(, bnxt_vnic_info)   ff_pool[MAX_FF_POOLS];
 
        struct bnxt_irq         *irq_tbl;
index ef5e47d..441e543 100644 (file)
@@ -125,8 +125,7 @@ int bnxt_mq_rx_configure(struct bnxt *bp)
                            RTE_MIN(bp->max_l2_ctx,
                             RTE_MIN(bp->max_rsscos_ctx, ETH_64_POOLS)));
                        RTE_LOG(ERR, PMD,
-                               "VMDq pool not set, defaulted to 64\n");
-                       pools = ETH_64_POOLS;
+                               "VMDq pool not set, defaulted to %d\n", pools);
                }
                nb_q_per_grp = bp->rx_cp_nr_rings / pools;
                start_grp_id = 0;