From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id CCB58A00E6 for ; Mon, 2 Sep 2019 08:08:08 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 68E741D164; Mon, 2 Sep 2019 08:08:07 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id EABA21BF05; Mon, 2 Sep 2019 08:08:05 +0200 (CEST) X-Amp-Result: UNSCANNABLE X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 01 Sep 2019 23:08:04 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,457,1559545200"; d="scan'208";a="183228775" Received: from dpdk-virtio-tbie-2.sh.intel.com (HELO ___) ([10.67.104.71]) by fmsmga007.fm.intel.com with ESMTP; 01 Sep 2019 23:08:02 -0700 Date: Mon, 2 Sep 2019 14:05:36 +0800 From: Tiwei Bie To: Maxime Coquelin Cc: zhihong.wang@intel.com, amorenoz@redhat.com, xiao.w.wang@intel.com, dev@dpdk.org, jfreimann@redhat.com, stable@dpdk.org Message-ID: <20190902060536.GB11681@___> References: <20190829080000.20806-1-maxime.coquelin@redhat.com> <20190829080000.20806-4-maxime.coquelin@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20190829080000.20806-4-maxime.coquelin@redhat.com> User-Agent: Mutt/1.9.4 (2018-02-28) Subject: Re: [dpdk-dev] [PATCH 03/15] net/virtio: move control path fonctions in virtqueue file 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" > net/virtio: move control path fonctions in virtqueue file s/fonctions/functions/ On Thu, Aug 29, 2019 at 09:59:48AM +0200, Maxime Coquelin wrote: > Virtio-vdpa driver needs to implement the control path, > so move related functions to virtqueue file so that it > can be used by both Virtio PMD and Virtio-vdpa drivers. > > Signed-off-by: Maxime Coquelin > --- > drivers/net/virtio/virtio_ethdev.c | 252 ---------------------------- > drivers/net/virtio/virtqueue.c | 255 +++++++++++++++++++++++++++++ > drivers/net/virtio/virtqueue.h | 5 + > 3 files changed, 260 insertions(+), 252 deletions(-) Reviewed-by: Tiwei Bie