From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pd0-f179.google.com (mail-pd0-f179.google.com [209.85.192.179]) by dpdk.org (Postfix) with ESMTP id AEB0DB39D for ; Mon, 11 Aug 2014 23:44:48 +0200 (CEST) Received: by mail-pd0-f179.google.com with SMTP id v10so5540355pde.10 for ; Mon, 11 Aug 2014 14:47:40 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-type:content-transfer-encoding; bh=HQvnP8QILGiCyMacgmk3E+NvrdXsN21xUUjhBI/8pgY=; b=bpQmB2STMhrp0KQHDQy2sdKbJkhsbs18s1oWyo7ZkesMAclepznGab+Uv97vPfbVpN nVGZCffgf8WpGVgima253zz51RyHspvNarthxFzyGcaFdNGMyqlbomGpg9NUuY/WStJ6 v3fijjKmPcjNpfpfincb5QWfB0/VLlYHIYvdXgv6Nd81Hky4DVJV+JKTSL8+x3emeei4 Mx0Cn20n1K5pQEtjrYZoWl7CIoKeRxxTEmHz1FjQh9QK62+ttY30ejO38bfZTM5k/12w F7fx5AYPJOg//2RM3FMMycSTAsg5GMeQLZMWkzyhLqCtOIFpfRQd33opQLwXa85jPUsV jZzA== X-Gm-Message-State: ALoCoQk4HvB/EywRdDFTD/u50hpBr9knH+f8m31PCF+7tqGjlynFMtgfqPPEk+iexhBM7fYugi0n X-Received: by 10.66.121.168 with SMTP id ll8mr450257pab.86.1407793660318; Mon, 11 Aug 2014 14:47:40 -0700 (PDT) Received: from haswell.linuxnetplumber.net (static-50-53-65-80.bvtn.or.frontiernet.net. [50.53.65.80]) by mx.google.com with ESMTPSA id ga1sm12387937pbb.82.2014.08.11.14.47.39 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 11 Aug 2014 14:47:39 -0700 (PDT) Date: Mon, 11 Aug 2014 14:47:37 -0700 From: Stephen Hemminger To: Bruce Richardson Message-ID: <20140811144737.3ef08d36@haswell.linuxnetplumber.net> In-Reply-To: <1407789890-17355-12-git-send-email-bruce.richardson@intel.com> References: <1407789890-17355-1-git-send-email-bruce.richardson@intel.com> <1407789890-17355-12-git-send-email-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [RFC PATCH 11/14] ixgbe: make mbuf_initializer queue variable global 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: Mon, 11 Aug 2014 21:44:49 -0000 On Mon, 11 Aug 2014 21:44:47 +0100 Bruce Richardson wrote: > On descriptor rearm, the mbuf_initializer variable can be used to do a > single-shot write to an mbuf to initialize all variables that can be > set. This is currently used only by vector PMD function, but now allow > it to be generally used by other RX code paths. > > Signed-off-by: Bruce Richardson > --- > lib/librte_pmd_ixgbe/ixgbe_rxtx.c | 25 +++++++++++++++++++++++-- > lib/librte_pmd_ixgbe/ixgbe_rxtx.h | 9 ++++++--- > lib/librte_pmd_ixgbe/ixgbe_rxtx_vec.c | 25 +------------------------ > 3 files changed, 30 insertions(+), 29 deletions(-) These patches from 11-14 are really a follow on thread to the original changes. The sequence could be shorter so that reviewers digest 1-10 first.