net/softnic: fix integer overflow
authorJasvinder Singh <jasvinder.singh@intel.com>
Thu, 19 Oct 2017 09:39:45 +0000 (10:39 +0100)
committerFerruh Yigit <ferruh.yigit@intel.com>
Thu, 26 Oct 2017 00:33:00 +0000 (02:33 +0200)
Fixed integer overflow by casting hard_rate to uint64_t type.

Coverity issue: 195020
Fixes: 8316b9816b79 ("net/softnic: support traffic management")

Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
drivers/net/softnic/rte_eth_softnic_tm.c

index 682cc4d..dbb2514 100644 (file)
@@ -47,7 +47,7 @@
 int
 tm_params_check(struct pmd_params *params, uint32_t hard_rate)
 {
-       uint64_t hard_rate_bytes_per_sec = hard_rate * BYTES_IN_MBPS;
+       uint64_t hard_rate_bytes_per_sec = (uint64_t)hard_rate * BYTES_IN_MBPS;
        uint32_t i;
 
        /* rate */