]> git.droids-corp.org - dpdk.git/commitdiff
net/octeontx: fix uninitialized variable in port open
authorSantosh Shukla <santosh.shukla@caviumnetworks.com>
Tue, 20 Feb 2018 17:14:16 +0000 (22:44 +0530)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 30 Mar 2018 12:08:43 +0000 (14:08 +0200)
Coverity issue: 195045
Fixes: f18b146c498d ("net/octeontx: create ethdev ports")
Cc: stable@dpdk.org
Signed-off-by: Santosh Shukla <santosh.shukla@caviumnetworks.com>
drivers/net/octeontx/octeontx_ethdev.c

index 0d8937cc2eccb123b0f8cb522c74c72b8cf41492..f2893faa96779350fbb2d01e35392451f3cbef0e 100644 (file)
@@ -122,7 +122,7 @@ octeontx_port_open(struct octeontx_nic *nic)
        int res;
 
        res = 0;
-
+       memset(&bgx_port_conf, 0x0, sizeof(bgx_port_conf));
        PMD_INIT_FUNC_TRACE();
 
        res = octeontx_bgx_port_open(nic->port_id, &bgx_port_conf);