net/ice: check cache pointer before dereference
authorWenzhuo Lu <wenzhuo.lu@intel.com>
Tue, 10 Nov 2020 06:45:52 +0000 (14:45 +0800)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 13 Nov 2020 18:43:26 +0000 (19:43 +0100)
The return value of rte_mempool_default_cache should be
checked as it can be NULL.

Fixes: a4e480de268e ("net/ice: optimize Tx by using AVX512")

Reported-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
Signed-off-by: Wenzhuo Lu <wenzhuo.lu@intel.com>
Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
drivers/net/ice/ice_rxtx_vec_avx512.c

index e5e7cc1..af6b324 100644 (file)
@@ -781,9 +781,14 @@ ice_tx_free_bufs_avx512(struct ice_tx_queue *txq)
 
        if (txq->offloads & DEV_TX_OFFLOAD_MBUF_FAST_FREE && (n & 31) == 0) {
                struct rte_mempool *mp = txep[0].mbuf->pool;
+               void **cache_objs;
                struct rte_mempool_cache *cache = rte_mempool_default_cache(mp,
                                rte_lcore_id());
-               void **cache_objs = &cache->objs[cache->len];
+
+               if (!cache || cache->len == 0)
+                       goto normal;
+
+               cache_objs = &cache->objs[cache->len];
 
                if (n > RTE_MEMPOOL_CACHE_MAX_SIZE) {
                        rte_mempool_ops_enqueue_bulk(mp, (void *)txep, n);
@@ -821,6 +826,7 @@ ice_tx_free_bufs_avx512(struct ice_tx_queue *txq)
                goto done;
        }
 
+normal:
        m = rte_pktmbuf_prefree_seg(txep[0].mbuf);
        if (likely(m)) {
                free[0] = m;