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 5E857A2EDB for ; Sun, 29 Sep 2019 09:55:33 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id BF9AB2B88; Sun, 29 Sep 2019 09:55:31 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 79FEE1F28 for ; Sun, 29 Sep 2019 09:55:30 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Sep 2019 00:55:29 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,562,1559545200"; d="scan'208";a="391694621" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by fmsmga006.fm.intel.com with ESMTP; 29 Sep 2019 00:55:29 -0700 Received: from shsmsx106.ccr.corp.intel.com (10.239.4.159) by fmsmsx104.amr.corp.intel.com (10.18.124.202) with Microsoft SMTP Server (TLS) id 14.3.439.0; Sun, 29 Sep 2019 00:55:28 -0700 Received: from shsmsx107.ccr.corp.intel.com ([169.254.9.33]) by SHSMSX106.ccr.corp.intel.com ([169.254.10.119]) with mapi id 14.03.0439.000; Sun, 29 Sep 2019 15:55:27 +0800 From: "Yang, Zhiyong" To: "Su, Simei" , "Zhang, Qi Z" , "Wu, Jingjing" , "Ye, Xiaolong" , "Yigit, Ferruh" CC: "dev@dpdk.org" , "Su, Simei" , "orika@mellanox.com" Thread-Topic: [dpdk-dev] [PATCH v7 1/3] ethdev: decouple flow types and RSS offload types Thread-Index: AQHVdpThJZrlKdI28Ee/paioh5GlTadCSBRQ Date: Sun, 29 Sep 2019 07:55:26 +0000 Message-ID: References: <1569733870-333768-1-git-send-email-simei.su@intel.com> <1569740956-69634-1-git-send-email-simei.su@intel.com> <1569740956-69634-2-git-send-email-simei.su@intel.com> In-Reply-To: <1569740956-69634-2-git-send-email-simei.su@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiMzY3YTRlMjUtZWIwYS00NDYxLThjYzktNmJjNjlhODVhYmU3IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiSnBLQmNIKzA0azdGclRUODE4MTRNeHNSS2l4eEE0Q1NkcGFwcFBYcFdJMFBZQ2xSRlpsTkxDUW00OG1EeGJvTiJ9 x-ctpclassification: CTP_NT dlp-product: dlpe-windows dlp-version: 11.2.0.6 dlp-reaction: no-action x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v7 1/3] ethdev: decouple flow types and 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" Hi Simei, Just one reminder. It looks that you miss to add the Ori's ack to this patch. Acked-by: Ori Kam Thanks Zhiyong -----Original Message----- From: dev On Behalf Of Simei Su Sent: Sunday, September 29, 2019 3:09 PM To: Zhang, Qi Z ; Wu, Jingjing ; Ye, Xiaolong ; Yigit, Ferruh Cc: dev@dpdk.org; Su, Simei Subject: [dpdk-dev] [PATCH v7 1/3] ethdev: decouple flow types and RSS offl= oad types This patch decouples RTE_ETH_FLOW_* and ETH_RSS_*. Both serves different pu= rposes. The former defines flow types. The later\ defines RSS offload types= . Signed-off-by: Simei Su --- ...........