From: John W. Linville Date: Thu, 29 Sep 2016 17:39:35 +0000 (-0400) Subject: net/i40e: do not use VSI before NULL check X-Git-Tag: spdx-start~5550 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=4f728369bc943985c7d370b626999d6d6d191c4e;p=dpdk.git net/i40e: do not use VSI before NULL check Coverity issue: 127556 Fixes: 440499cf5376 ("net/i40e: support floating VEB") Signed-off-by: John W. Linville Acked-by: Ferruh Yigit --- diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c index d0640b9702..0a8c12c9b5 100644 --- a/drivers/net/i40e/i40e_ethdev.c +++ b/drivers/net/i40e/i40e_ethdev.c @@ -4115,11 +4115,13 @@ i40e_vsi_release(struct i40e_vsi *vsi) void *temp; int ret; struct i40e_mac_filter *f; - uint16_t user_param = vsi->user_param; + uint16_t user_param; if (!vsi) return I40E_SUCCESS; + user_param = vsi->user_param; + pf = I40E_VSI_TO_PF(vsi); hw = I40E_VSI_TO_HW(vsi);