From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerin Jacob Subject: Re: [PATCH 2/4] virtio: introduce RTE_LIBRTE_VIRTIO_INC_VECTOR Date: Mon, 27 Jun 2016 20:18:31 +0530 Message-ID: <20160627144829.GA25422@localhost.localdomain> References: <1467028448-8914-1-git-send-email-jerin.jacob@caviumnetworks.com> <1467028448-8914-3-git-send-email-jerin.jacob@caviumnetworks.com> <2275187.xVvf3fOqxc@xps13> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Cc: , , , , To: Thomas Monjalon Return-path: Received: from na01-bl2-obe.outbound.protection.outlook.com (mail-bl2on0054.outbound.protection.outlook.com [65.55.169.54]) by dpdk.org (Postfix) with ESMTP id 1D412530A for ; Mon, 27 Jun 2016 16:48:59 +0200 (CEST) Content-Disposition: inline In-Reply-To: <2275187.xVvf3fOqxc@xps13> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Mon, Jun 27, 2016 at 04:19:57PM +0200, Thomas Monjalon wrote: > 2016-06-27 17:24, Jerin Jacob: > > --- a/config/common_base > > +++ b/config/common_base > > @@ -267,6 +267,7 @@ CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_RX=n > > CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_TX=n > > CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_DRIVER=n > > CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_DUMP=n > > +CONFIG_RTE_LIBRTE_VIRTIO_INC_VECTOR=y > > I don't remember what means INC_VECTOR? > Why a config option is needed for vector implementations? I thought of adding additional configuration option(INC_VECTOR) _apart_ from cpu flag based scheme in the patch because even though if a given platform has cpu instruction support, in some platforms scalar version may perform well wrt vector version(based on instruction latency, emulation required or not etc). So a top level flag INC_VECTOR, can override the vector selection for a given platform if required. Regarding INC_VECTOR(INC in vector configuration name, I have no idea, I followed the existing flags) $ grep "INC_VECTOR" config/common_base CONFIG_RTE_IXGBE_INC_VECTOR=y CONFIG_RTE_LIBRTE_I40E_INC_VECTOR=y CONFIG_RTE_LIBRTE_FM10K_INC_VECTOR=y Jerin