From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 52E61A04E6; Tue, 17 Nov 2020 14:07:18 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C5163567C; Tue, 17 Nov 2020 14:07:16 +0100 (CET) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id 2AF8E4C90 for ; Tue, 17 Nov 2020 14:07:14 +0100 (CET) IronPort-SDR: aL/z2uxJFw89idfI9Ey1Zh6T5RqrRfMjtcjmVop/3PH4GY2hGqw4lKdeKsWZACAbIferY7a/Ll SANTajti49tQ== X-IronPort-AV: E=McAfee;i="6000,8403,9807"; a="150187582" X-IronPort-AV: E=Sophos;i="5.77,485,1596524400"; d="scan'208";a="150187582" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Nov 2020 05:06:49 -0800 IronPort-SDR: RBNmgro5xwQnNyoZ8agq8vGtf1HOvgAXBuOxHW9mM7d7jJgG/0MQ+x6V9tsn6EGZClaqV/l69Z M6/Dm5500+9A== X-IronPort-AV: E=Sophos;i="5.77,485,1596524400"; d="scan'208";a="475913119" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.213.210.196]) ([10.213.210.196]) by orsmga004-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Nov 2020 05:06:47 -0800 To: Simei Su , qi.z.zhang@intel.com Cc: dev@dpdk.org, junfeng.guo@intel.com, yahui.cao@intel.com, xiao.zhang@intel.com References: <20201116053238.440870-1-simei.su@intel.com> <20201116053238.440870-2-simei.su@intel.com> From: Ferruh Yigit Message-ID: <4a2cd697-0e6d-5fa7-41e7-31de9f2ce37a@intel.com> Date: Tue, 17 Nov 2020 13:06:43 +0000 MIME-Version: 1.0 In-Reply-To: <20201116053238.440870-2-simei.su@intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v1 1/2] ethdev: add eCPRI RSS offload types 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 11/16/2020 5:32 AM, Simei Su wrote: > This patch defines new RSS offload types for eCPRI. For eCPRI with > Message Type 0, the hash field is physical channel ID. > > Signed-off-by: Simei Su > --- > lib/librte_ethdev/rte_ethdev.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/lib/librte_ethdev/rte_ethdev.h b/lib/librte_ethdev/rte_ethdev.h > index 69fc973..f5f8919 100644 > --- a/lib/librte_ethdev/rte_ethdev.h > +++ b/lib/librte_ethdev/rte_ethdev.h > @@ -525,6 +525,7 @@ struct rte_eth_rss_conf { > #define ETH_RSS_L2TPV3 (1ULL << 29) > #define ETH_RSS_PFCP (1ULL << 30) > #define ETH_RSS_PPPOE (1ULL << 31) > +#define ETH_RSS_ECPRI (1ULL << 32) > Reviewed-by: Ferruh Yigit