From mboxrd@z Thu Jan 1 00:00:00 1970 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) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=intel; t=1491369544; x=1522905544; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=JeCSziGJ+wiJaXZIJqoxlXJ96Ps+X1TP3QF40vtMVf0=; b=Hlihw6CzMbLjc/J5VxI7HwHnbW1CHwsquos0n/OWFvpMWZ+7fJfnbo1H jA7LuPJCDZFN+T7YGbYElRV/FJ7vCg==; Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 04 Apr 2017 22:19:02 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,277,1486454400"; d="scan'208";a="842089956" Received: from yliu-dev.sh.intel.com (HELO yliu-dev) ([10.239.67.162]) by FMSMGA003.fm.intel.com with ESMTP; 04 Apr 2017 22:19:01 -0700 Date: Wed, 5 Apr 2017 13:16:28 +0800 From: Yuanhan Liu To: Thomas Monjalon Cc: dev@dpdk.org, Maxime Coquelin , Harris James R , Liu Changpeng 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 Content-Disposition: inline In-Reply-To: <2503334.uClL5c0d02@xps13> User-Agent: Mutt/1.5.23 (2014-03-12) Subject: Re: [dpdk-dev] [PATCH v4 19/22] vhost: rename header 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: , X-List-Received-Date: Wed, 05 Apr 2017 05:19:04 -0000 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