From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yuanhan Liu Subject: Re: [PATCH v4 19/22] vhost: rename header file Date: Wed, 5 Apr 2017 13:16:28 +0800 Message-ID: <20170405051628.GE18844@yliu-dev.sh.intel.com> References: <1490705142-893-1-git-send-email-yuanhan.liu@linux.intel.com> <1491031380-1499-1-git-send-email-yuanhan.liu@linux.intel.com> <1491031380-1499-20-git-send-email-yuanhan.liu@linux.intel.com> <2503334.uClL5c0d02@xps13> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@dpdk.org, Maxime Coquelin , Harris James R , Liu Changpeng To: Thomas Monjalon Return-path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 0A8972C6E for ; Wed, 5 Apr 2017 07:19:03 +0200 (CEST) Content-Disposition: inline In-Reply-To: <2503334.uClL5c0d02@xps13> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Wed, Apr 05, 2017 at 02:26:20AM +0200, Thomas Monjalon wrote: > 2017-04-01 15:22, Yuanhan Liu: > > Rename "rte_virtio_net.h" to "rte_vhost.h", to not let it be virtio > > net specific. > > > > Signed-off-by: Yuanhan Liu > > Reviewed-by: Maxime Coquelin > > --- > > doc/guides/rel_notes/deprecation.rst | 9 - > > doc/guides/rel_notes/release_17_05.rst | 3 + > > drivers/net/vhost/rte_eth_vhost.c | 2 +- > > drivers/net/vhost/rte_eth_vhost.h | 2 +- > > examples/tep_termination/main.c | 2 +- > > examples/tep_termination/vxlan_setup.c | 2 +- > > examples/vhost/main.c | 2 +- > > lib/librte_vhost/Makefile | 2 +- > > lib/librte_vhost/rte_vhost.h | 425 +++++++++++++++++++++++++++++++++ > > lib/librte_vhost/rte_virtio_net.h | 425 --------------------------------- > > lib/librte_vhost/vhost.c | 2 +- > > lib/librte_vhost/vhost.h | 2 +- > > lib/librte_vhost/vhost_user.h | 2 +- > > lib/librte_vhost/virtio_net.c | 2 +- > > 14 files changed, 438 insertions(+), 444 deletions(-) > > create mode 100644 lib/librte_vhost/rte_vhost.h > > delete mode 100644 lib/librte_vhost/rte_virtio_net.h > > It must be renamed also in doc/api/doxy-api-index.md: > - [vhost] (@ref rte_virtio_net.h), > + [vhost] (@ref rte_vhost.h), Oops, wasn't aware of that. I saw you have already handled that while applying. Thanks for that! --yliu