From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yuanhan Liu Subject: Re: [PATCH v2 2/3] virtio: move SSE based Rx implementation to separate file Date: Mon, 4 Jul 2016 15:42:47 +0800 Message-ID: <20160704074247.GW2831@yliu-dev.sh.intel.com> References: <1467028448-8914-1-git-send-email-jerin.jacob@caviumnetworks.com> <1467371814-26754-1-git-send-email-jerin.jacob@caviumnetworks.com> <1467371814-26754-3-git-send-email-jerin.jacob@caviumnetworks.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@dpdk.org, thomas.monjalon@6wind.com, bruce.richardson@intel.com, jianbo.liu@linaro.org, huawei.xie@intel.com To: Jerin Jacob Return-path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 29AE7379E for ; Mon, 4 Jul 2016 09:41:36 +0200 (CEST) Content-Disposition: inline In-Reply-To: <1467371814-26754-3-git-send-email-jerin.jacob@caviumnetworks.com> 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 Fri, Jul 01, 2016 at 04:46:37PM +0530, Jerin Jacob wrote: > * Introduced cpuflag based run-time detection to > select the SSE based simple Rx handler > * Split out SSE instruction based virtio simple Rx > implementation to a separate file As your commit log says, it does two things, therefore, I'd suggest you to do it in two patches, with each just does one thing as you mentioned. > +static void > +virtio_update_rxtx_handler(struct rte_eth_dev *dev, > + const struct rte_eth_txconf *tx_conf) > +{ > + uint8_t use_simple_rxtx = 0; > + struct virtio_hw *hw = dev->data->dev_private; > + > +#if defined RTE_ARCH_X86 > + if (rte_cpu_get_flag_enabled(RTE_CPUFLAG_SSE3)) > + use_simple_rxtx = 1; > +#endif > + /* Use simple rx/tx func if single segment and no offloads */ > + if (use_simple_rxtx && > + (tx_conf->txq_flags & VIRTIO_SIMPLE_FLAGS) == VIRTIO_SIMPLE_FLAGS && > + !vtpci_with_feature(hw, VIRTIO_NET_F_MRG_RXBUF)) { The alignment here is not consistent, something like following is what I'd suggest: if (use_simple_rxtx && (tx_conf->txq_flags & VIRTIO_SIMPLE_FLAGS) == VIRTIO_SIMPLE_FLAGS && !vtpci_with_feature(hw, VIRTIO_NET_F_MRG_RXBUF)) { --yliu