]> git.droids-corp.org - dpdk.git/commitdiff
vhost: check DMA info return
authorJiayu Hu <jiayu.hu@intel.com>
Wed, 29 Jun 2022 09:07:06 +0000 (05:07 -0400)
committerMaxime Coquelin <maxime.coquelin@redhat.com>
Fri, 1 Jul 2022 13:49:49 +0000 (15:49 +0200)
This patch checks the return value of rte_dma_info_get()
called in rte_vhost_async_dma_configure().

Coverity issue: 379066
Fixes: 53d3f4778c1d ("vhost: integrate dmadev in asynchronous data-path")
Cc: stable@dpdk.org
Signed-off-by: Jiayu Hu <jiayu.hu@intel.com>
Reviewed-by: Chenbo Xia <chenbo.xia@intel.com>
lib/vhost/vhost.c

index b14521e4d18594d44e48344bd765ec10d4ea5633..70c04c036e75ac95086eb26b50cb1a816100a0a7 100644 (file)
@@ -1868,7 +1868,11 @@ rte_vhost_async_dma_configure(int16_t dma_id, uint16_t vchan_id)
                return -1;
        }
 
-       rte_dma_info_get(dma_id, &info);
+       if (rte_dma_info_get(dma_id, &info) != 0) {
+               VHOST_LOG_CONFIG(ERR, "Fail to get DMA %d information.\n", dma_id);
+               return -1;
+       }
+
        if (vchan_id >= info.max_vchans) {
                VHOST_LOG_CONFIG(ERR, "Invalid DMA %d vChannel %u.\n", dma_id, vchan_id);
                return -1;