From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id A21B91B3FD; Thu, 29 Nov 2018 09:41:26 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Nov 2018 00:41:25 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,294,1539673200"; d="scan'208";a="95676214" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by orsmga006.jf.intel.com with ESMTP; 29 Nov 2018 00:41:23 -0800 Received: from fmsmsx120.amr.corp.intel.com (10.18.124.208) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.408.0; Thu, 29 Nov 2018 00:41:25 -0800 Received: from shsmsx102.ccr.corp.intel.com (10.239.4.154) by fmsmsx120.amr.corp.intel.com (10.18.124.208) with Microsoft SMTP Server (TLS) id 14.3.408.0; Thu, 29 Nov 2018 00:41:24 -0800 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.201]) by shsmsx102.ccr.corp.intel.com ([169.254.2.182]) with mapi id 14.03.0415.000; Thu, 29 Nov 2018 16:41:22 +0800 From: "Wang, Xiao W" To: "Ye, Xiaolong" , "dev@dpdk.org" , Maxime Coquelin , "Bie, Tiwei" , "Wang, Zhihong" CC: "stable@dpdk.org" Thread-Topic: [PATCH] net/ifcvf: fix a typo Thread-Index: AQHUh70DedXxIhORoUeXsj4uECGpeKVmbumg Date: Thu, 29 Nov 2018 08:41:21 +0000 Message-ID: References: <20181129082219.82173-1-xiaolong.ye@intel.com> In-Reply-To: <20181129082219.82173-1-xiaolong.ye@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ctpclassification: CTP_NT x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiYTRiNWI2NmItYzljYi00M2RjLThjOGUtNTk2ZTYwOWYzZjY1IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoieFRpdFwvM1ZZQmRFaVBUU2xQNWdCTXVFOUtzbFp6YW1lVlo0dkF1M2JaTEdXenNERVdpY0xwam9UNXJUS0hsRmUifQ== dlp-product: dlpe-windows dlp-version: 11.0.400.15 dlp-reaction: no-action x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-stable] [PATCH] net/ifcvf: fix a typo X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Nov 2018 08:41:27 -0000 Hi, > -----Original Message----- > From: Ye, Xiaolong > Sent: Thursday, November 29, 2018 4:22 PM > To: dev@dpdk.org; Maxime Coquelin ; Bie, > Tiwei ; Wang, Zhihong > Cc: Wang, Xiao W ; Ye, Xiaolong > ; stable@dpdk.org > Subject: [PATCH] net/ifcvf: fix a typo >=20 > The struct should be ifcvf_net_config other than ifcvf_net_device_config. >=20 > Fixes: a3f8150eac6d ("net/ifcvf: add ifcvf vDPA driver") > Cc: xiao.w.wang@intel.com > Cc: stable@dpdk.org >=20 > Signed-off-by: Xiaolong Ye > --- > drivers/net/ifc/base/ifcvf.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/drivers/net/ifc/base/ifcvf.h b/drivers/net/ifc/base/ifcvf.h > index f026c70ab..c15c69107 100644 > --- a/drivers/net/ifc/base/ifcvf.h > +++ b/drivers/net/ifc/base/ifcvf.h > @@ -121,7 +121,7 @@ struct ifcvf_hw { > u8 notify_region; > u32 notify_off_multiplier; > struct ifcvf_pci_common_cfg *common_cfg; > - struct ifcvf_net_device_config *dev_cfg; > + struct ifcvf_net_config *dev_cfg; > u8 *isr; > u16 *notify_base; > u16 *notify_addr[IFCVF_MAX_QUEUES * 2]; > -- > 2.17.1 Thanks. Acked-by: Xiao Wang