From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rasesh Mody Subject: [PATCH 8/8] net/qede/base: fix to check FW override after rejection Date: Fri, 2 Dec 2016 22:35:09 -0800 Message-ID: <1480746909-25686-8-git-send-email-Rasesh.Mody@cavium.com> References: <1480746909-25686-1-git-send-email-Rasesh.Mody@cavium.com> Mime-Version: 1.0 Content-Type: text/plain Cc: , Rasesh Mody To: Return-path: Received: from mx0b-0016ce01.pphosted.com (mx0a-0016ce01.pphosted.com [67.231.148.157]) by dpdk.org (Postfix) with ESMTP id DD19A58CF for ; Sat, 3 Dec 2016 07:35:31 +0100 (CET) In-Reply-To: <1480746909-25686-1-git-send-email-Rasesh.Mody@cavium.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Apparently VF over Legacy PF doesn't work, as VF would fail after getting the initial rejection message [instead of sending an additional one where it asks for a FW override and see if it works]. Fixes: 22d07d93 ("net/qede/base: update") Signed-off-by: Rasesh Mody --- drivers/net/qede/base/ecore_vf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/qede/base/ecore_vf.c b/drivers/net/qede/base/ecore_vf.c index 161b3176..c26b602b 100644 --- a/drivers/net/qede/base/ecore_vf.c +++ b/drivers/net/qede/base/ecore_vf.c @@ -294,6 +294,7 @@ static enum _ecore_status_t ecore_vf_pf_acquire(struct ecore_hwfn *p_hwfn) " override\n"); req->vfdev_info.capabilities |= VFPF_ACQUIRE_CAP_PRE_FP_HSI; + continue; } } -- 2.11.0.rc1