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 AE6F47F39 for ; Wed, 29 Oct 2014 09:56:02 +0100 (CET) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga101.jf.intel.com with ESMTP; 29 Oct 2014 02:04:52 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.04,808,1406617200"; d="scan'208";a="627508049" Received: from bricha3-mobl.ger.corp.intel.com (HELO bricha3-mobl.ir.intel.com) ([10.243.20.19]) by orsmga002.jf.intel.com with SMTP; 29 Oct 2014 02:04:50 -0700 Received: by bricha3-mobl.ir.intel.com (sSMTP sendmail emulation); Wed, 29 Oct 2014 09:04:50 +0100 Date: Wed, 29 Oct 2014 09:04:49 +0000 From: Bruce Richardson To: Yong Wang Message-ID: <20141029090449.GA8292@BRICHA3-MOBL> References: <1413181389-14887-1-git-send-email-yongwang@vmware.com> <1413181389-14887-2-git-send-email-yongwang@vmware.com> <20141013113146.202b5eb3@uryu.home.lan> <20141022190933.44549786@uryu.home.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Organization: Intel Shannon Ltd. User-Agent: Mutt/1.5.23 (2014-03-12) Cc: "dev@dpdk.org" Subject: Re: [dpdk-dev] [PATCH 1/5] vmxnet3: Fix VLAN Rx stripping X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Oct 2014 08:56:03 -0000 On Tue, Oct 28, 2014 at 09:57:14PM +0000, Yong Wang wrote: > On 10/22/14, 6:39 AM, "Stephen Hemminger" > wrote: > > > >On Mon, 13 Oct 2014 18:42:18 +0000 > >Yong Wang wrote: > > > >> Are you referring to the patch as a whole or your comment is about the > >>reset of vlan_tci on the "else" (no vlan tags stripped) path? I am not > >>sure I get your comments here. This patch simply fixes a bug on the rx > >>vlan stripping path (where valid vlan_tci stripped is overwritten > >>unconditionally later on the rx path in the original vmxnet3 pmd > >>driver). All the other pmd drivers are doing the same thing in terms of > >>translating descriptor status to rte_mbuf flags for vlan stripping. > > > >I was thinking that there are many fields in a pktmbuf and rather than > >individually > >setting them (like tci). The code should call the common > >rte_pktmbuf_reset before setting > >the fields. That way when someone adds a field to mbuf they don't have > >to chasing > >through every driver that does it's own initialization. > > Currently rte_pktmbuf_reset() is used in rte_pktmbuf_alloc() but looks > like most pmd drivers use rte_rxmbuf_alloc() to replenish rx buffers, > which directly calls __rte_mbuf_raw_alloc > () without calling rte_pktmbuf_reset(). How about we change that in a > separate patch to all pmd drivers so that we can keep their behavior > consistent? > We can look to do that, but we need to beware of performance regressions if we do so. Certainly the vector implementation of the ixgbe would be severely impacted performance-wise if such a change were made. However, code paths which are not as highly tuned, or which do not need to be as highly tuned could perhaps use the standard function. The main reason for this regression is that reset will clear all fields of the mbuf, which would be wasted cycles for a number of the PMDs as they will later set some of the fields based on values in the receive descriptor. Basically, on descriptor rearm in a PMD, the only fields that need to be reset would be those not set by the copy of data from the descriptor. /Bruce