From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <linville@tuxdriver.com>
Received: from smtp.tuxdriver.com (charlotte.tuxdriver.com [70.61.120.58])
 by dpdk.org (Postfix) with ESMTP id 00F592BA1;
 Thu, 29 Sep 2016 19:45:15 +0200 (CEST)
Received: from uucp by smtp.tuxdriver.com with local-rmail (Exim 4.63)
 (envelope-from <linville@tuxdriver.com>)
 id 1bpfOT-0001qo-OR; Thu, 29 Sep 2016 13:45:13 -0400
Received: from localhost.localdomain (localhost.localdomain [127.0.0.1])
 by localhost.localdomain (8.15.2/8.14.6) with ESMTP id u8THdtiA010197;
 Thu, 29 Sep 2016 13:39:55 -0400
Received: (from linville@localhost)
 by localhost.localdomain (8.15.2/8.15.2/Submit) id u8THdti5010196;
 Thu, 29 Sep 2016 13:39:55 -0400
X-Authentication-Warning: localhost.localdomain: linville set sender to
 linville@tuxdriver.com using -f
From: "John W. Linville" <linville@tuxdriver.com>
To: dev@dpdk.org
Cc: dpdk stable <stable@dpdk.org>
Date: Thu, 29 Sep 2016 13:39:35 -0400
Message-Id: <1475170776-10130-4-git-send-email-linville@tuxdriver.com>
X-Mailer: git-send-email 2.7.4
In-Reply-To: <1475170776-10130-1-git-send-email-linville@tuxdriver.com>
References: <1475090404-20707-1-git-send-email-linville@tuxdriver.com>
 <1475170776-10130-1-git-send-email-linville@tuxdriver.com>
Subject: [dpdk-stable] [PATCH v2 3/4] net/i40e: do not use vsi until after
	NULL check in i40e_vsi_release
X-BeenThere: stable@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: patches for stable branches <stable.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/stable>,
 <mailto:stable-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/stable/>
List-Post: <mailto:stable@dpdk.org>
List-Help: <mailto:stable-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/stable>,
 <mailto:stable-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Thu, 29 Sep 2016 17:45:16 -0000

Coverity issue: 127556
Fixes: 440499cf5376 ("net/i40e: support floating VEB")

Signed-off-by: John W. Linville <linville@tuxdriver.com>
Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
v2: fix-up changelog entries based-on comments from Ferruh Yigit

 drivers/net/i40e/i40e_ethdev.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c
index b04c833b2e04..d1f0f762b04c 100644
--- a/drivers/net/i40e/i40e_ethdev.c
+++ b/drivers/net/i40e/i40e_ethdev.c
@@ -4097,11 +4097,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);
 
-- 
2.7.4