From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f170.google.com (mail-wr0-f170.google.com [209.85.128.170]) by dpdk.org (Postfix) with ESMTP id 3EAED326C for ; Tue, 4 Apr 2017 22:22:42 +0200 (CEST) Received: by mail-wr0-f170.google.com with SMTP id w11so221222119wrc.3 for ; Tue, 04 Apr 2017 13:22:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=yXqnrX2XJg/G99k4NelLl+YFnPgjO75KRk5YReioEx4=; b=XINSshu5o1QqVqTfpL21gDXckgVPmPc3gqkzGP4mUG20KdhKDlZ7eMOmjvpWk3zAtA HHKvzBFV2+qB3fy7PhkRcquo0QJeXK06MrzaPdgX6thzOwF8XryfbkYK/t4FlQ3pPtui OJVm1nLHZnUYcwPj1gLyjb+MSgZroYIbS4CvRW2fgYAEp5sVNKlOX9/9lnfZlBxWF3+W n4Iv57SvgOOUvMjLtSuq6KgztNTUCW4nnrhPH5R1twupVbGXw6s++2mAXfp6/XHjhm5l Xn0qTFWY2HZ9/1fHXTpTLf8dkPyN6U+3gU4u3ebdYytxhdFvu30VYTeyUfIt7ZHSpHIJ OWFQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=yXqnrX2XJg/G99k4NelLl+YFnPgjO75KRk5YReioEx4=; b=EAfjZ5lmJ5xltRVCqCt8zeeMf+g0FaBR+OgtmcyGnsaDPCVvEjnUWf8wAonA820atY uLPNRg2NmLgVyYUl4ydB9bnFH3pC/obrrJR5dgZ4C99zYXK80im53WaxKhVsT0TYuX15 Fv9KQzzjtBAi3/7QvtWMqf4RwlCzF45LHPeEmBCVr3Sk6jOL8sxYEJEjImyLcw8srm/u GWBvXnZ5IL0o0svP3i4vgI9fWQ4I00h4AV13qlfANWG5cv81aGQe2SRY27VucR/yUtop MYyTFzC/s75CvxUBDBGol2zkflcZYuUNgu1mIliv3J9XParJWf75EcA+oMw/uuYXd4V4 1gFw== X-Gm-Message-State: AFeK/H3OFzwTfI3c2XVJJxyUJ38/HUIJklyZUJ5cb0pHxLot+X4DytSQOh9kfnSL+hQjb+We X-Received: by 10.223.171.131 with SMTP id s3mr23286207wrc.102.1491337361730; Tue, 04 Apr 2017 13:22:41 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id 190sm19703698wmk.17.2017.04.04.13.22.40 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 04 Apr 2017 13:22:40 -0700 (PDT) From: Thomas Monjalon To: Qi Zhang Cc: dev@dpdk.org, Ferruh Yigit , jingjing.wu@intel.com, helin.zhang@intel.com, Jerin Jacob , Jianbo Liu , Chao Zhu Date: Tue, 04 Apr 2017 22:22:40 +0200 Message-ID: <8195227.QCEXF4XZSi@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <7f5ba680-9b10-dde5-fef2-5b245f928c93@intel.com> References: <20170404015516.7784-1-qi.z.zhang@intel.com> <7f5ba680-9b10-dde5-fef2-5b245f928c93@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v7 0/3] net/i40e: configurable PTYPE mapping 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: Tue, 04 Apr 2017 20:22:42 -0000 2017-04-04 10:30, Ferruh Yigit: > On 4/4/2017 2:55 AM, Qi Zhang wrote: > > The patch set create new APIs that help to change the mapping from hardware > > defined packet type to software defined packet type for i40e NICs. > > Keep these APIs private is because currently they are only meaningful for > > devices that support dynamic PTYPE configuration, which may not be a general > > device feature. [...] > > Qi Zhang (3): > > net/i40e: enable per dev PTYPE mapping table > > net/i40e: configurable PTYPE mapping > > app/testpmd: add CL for ptype mapping configure > > Series applied to dpdk-next-net/master, thanks. It does not compile for ARM (not tested for POWER): drivers/net/i40e/i40e_rxtx_vec_neon.c: In function '_recv_raw_pkts_vec': 229:2: error: unknown type name 'uint32' uint32 *ptype_tbl = rxq->vsi->adapter->ptype_tbl; Given that - it changes NEON and Altivec code - it does not compile on ARM - there is no Ack from NEON or Altivec maintainers (they were not Cc'ed) I really doubt it has been tested. That's why it won't be in RC1. If NEON and Altivec maintainers agree, we can give it a chance for RC2. PS: please use --in-reply-to to let us check the discussion history.