From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id E81292B96 for ; Wed, 7 Dec 2016 16:16:21 +0100 (CET) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga105.fm.intel.com with ESMTP; 07 Dec 2016 07:16:21 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,310,1477983600"; d="scan'208";a="909717779" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.237.220.29]) ([10.237.220.29]) by orsmga003.jf.intel.com with ESMTP; 07 Dec 2016 07:16:20 -0800 To: Wenzhuo Lu , dev@dpdk.org References: <1480637533-37425-1-git-send-email-wenzhuo.lu@intel.com> <1481081535-37448-1-git-send-email-wenzhuo.lu@intel.com> <1481081535-37448-29-git-send-email-wenzhuo.lu@intel.com> Cc: "Chen Jing D(Mark)" From: Ferruh Yigit Message-ID: <63a680b6-6a5e-cfe9-6050-ac348334ba67@intel.com> Date: Wed, 7 Dec 2016 15:16:19 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.5.1 MIME-Version: 1.0 In-Reply-To: <1481081535-37448-29-git-send-email-wenzhuo.lu@intel.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v2 28/32] net/i40e: return correct vsi_id X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Dec 2016 15:16:22 -0000 On 12/7/2016 3:32 AM, Wenzhuo Lu wrote: > PF host didn't return correct VSI id to VF. > This change fix it. This looks like a fix for current code, can you please update commit title and log to reflect the fix? > > Signed-off-by: Chen Jing D(Mark) > --- > drivers/net/i40e/i40e_pf.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/net/i40e/i40e_pf.c b/drivers/net/i40e/i40e_pf.c > index 0f582ed..8319c2c 100644 > --- a/drivers/net/i40e/i40e_pf.c > +++ b/drivers/net/i40e/i40e_pf.c > @@ -351,8 +351,7 @@ > > /* Change below setting if PF host can support more VSIs for VF */ > vf_res->vsi_res[0].vsi_type = I40E_VSI_SRIOV; > - /* As assume Vf only has single VSI now, always return 0 */ > - vf_res->vsi_res[0].vsi_id = 0; > + vf_res->vsi_res[0].vsi_id = vf->vsi->vsi_id; > vf_res->vsi_res[0].num_queue_pairs = vf->vsi->nb_qps; > ether_addr_copy(&vf->mac_addr, > (struct ether_addr *)vf_res->vsi_res[0].default_mac_addr); >