From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 92A235B16 for ; Tue, 27 Feb 2018 14:09:39 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 Feb 2018 05:09:38 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.47,401,1515484800"; d="scan'208";a="207340734" Received: from fyigit-mobl.ger.corp.intel.com (HELO [10.237.221.126]) ([10.237.221.126]) by fmsmga005.fm.intel.com with ESMTP; 27 Feb 2018 05:09:36 -0800 To: Xueming Li , Wenzhuo Lu , Jingjing Wu , Thomas Monjalon , Nelio Laranjeiro , Adrien Mazarguil , Shahaf Shuler Cc: dev@dpdk.org References: <20180226150947.107179-1-xuemingl@mellanox.com> <20180226150947.107179-2-xuemingl@mellanox.com> From: Ferruh Yigit Message-ID: Date: Tue, 27 Feb 2018 13:09:35 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.6.0 MIME-Version: 1.0 In-Reply-To: <20180226150947.107179-2-xuemingl@mellanox.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH 01/18] ethdev: support tunnel RSS level 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, 27 Feb 2018 13:09:39 -0000 On 2/26/2018 3:09 PM, Xueming Li wrote: > Currently PMD implementations default RSS on either tunnel outer or > inner fields. This patch introduced RSS level to allow user to specify > RSS hash field level of tunneled packets. > > 0: outer RSS. > 1: inner RSS. > 2-255: deep RSS level. > > Please note that tunnels that tightly nested without IP/UDP/TCP layer > interlaced are deemed as one level. For example the following packet can > only use level 0 or 1: > eth / ipv4 / GRE / MPLS / ipv4 / udp > > Signed-off-by: Xueming Li > --- > lib/librte_ether/rte_ethdev.h | 9 +++++++++ Please remove the related deprecation notice in this patch.