From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id A5EE1A0524; Fri, 14 May 2021 12:42:53 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3563340042; Fri, 14 May 2021 12:42:53 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 5749B40041 for ; Fri, 14 May 2021 12:42:51 +0200 (CEST) IronPort-SDR: FStby9HzT0YgBFLU0zO83plw0qaX5Bz/Vx/8idI6ZFnKwBnDLvDA1F1nvqYYkafocCnbis6nrl zxDxSU8CZZXw== X-IronPort-AV: E=McAfee;i="6200,9189,9983"; a="285676206" X-IronPort-AV: E=Sophos;i="5.82,299,1613462400"; d="scan'208";a="285676206" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 May 2021 03:42:47 -0700 IronPort-SDR: 9LP8nPdnRdD5BtmNpKJrHDardzj8IzEGmc9MPRt6zWWxerSunNMYiMZIVeGi6XebeB9cXh3j7s K1T/QSHh605A== X-IronPort-AV: E=Sophos;i="5.82,299,1613462400"; d="scan'208";a="457096302" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.213.241.112]) ([10.213.241.112]) by fmsmga004-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 May 2021 03:42:40 -0700 To: Thomas Monjalon , dev@dpdk.org Cc: andrew.rybchenko@oktetlabs.ru, Asaf Penso , Ajit Khaparde , Somnath Kotur , Rahul Lakkireddy , Hemant Agrawal , Sachin Saxena , Jeff Guo , Haiyue Wang , John Daley , Hyong Youb Kim , Gaetan Rivet , Ziyang Xuan , Xiaoyun Wang , Guoyang Zhou , "Min Hu (Connor)" , Yisen Zhuang , Lijun Ou , Beilei Xing , Jingjing Wu , Qiming Yang , Qi Zhang , Rosen Xu , Matan Azrad , Shahaf Shuler , Viacheslav Ovsiienko , Liron Himi , Jerin Jacob , Nithin Dabilpuram , Kiran Kumar K , Rasesh Mody , Devendra Singh Rawat , Igor Russkikh , Keith Wiles , Jiawen Wu , Jian Wang References: <1612458325-13508-1-git-send-email-asafp@nvidia.com> <20210407223320.2952469-1-thomas@monjalon.net> <20210407223320.2952469-3-thomas@monjalon.net> From: Ferruh Yigit X-User: ferruhy Message-ID: <9d155d7f-dfbc-2f7f-47e6-ec86931b42ab@intel.com> Date: Fri, 14 May 2021 11:42:37 +0100 MIME-Version: 1.0 In-Reply-To: <20210407223320.2952469-3-thomas@monjalon.net> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v5 2/3] doc: add flow API features tables X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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 4/7/2021 11:33 PM, Thomas Monjalon wrote: > The NICs overview table lists all supported features per driver. > There was a single row for "Flow API", > although rte_flow is composed of many items and actions. > > The row "Flow API" is replaced with two new tables for items and actions. > > Also, since rte_flow is not implemented in all drivers, > it would be ugly to add empty sections in some files. > That's why the error message for missing INI section is removed. > > The lists are sorted alphabetically. > The extra files for some VF and vectorized data paths are not filled. > > Signed-off-by: Asaf Penso > Signed-off-by: Thomas Monjalon <...> > +[rte_flow items] > +eth = Y > +ipv4 = Y > +ipv6 = Y > +pf = Y > +phy_port = Y > +port_id = Y > +tcp = Y > +udp = Y > +vf = Y > +vlan = Y > +vxlan = Y > + > +[rte_flow actions] > +count = Y > +drop = Y > +mark = Y > +pf = Y > +phy_port = Y > +port_id = Y > +rss = Y > +vf = Y > +vxlan_decap = Y > +vxlan_encap = Y Indeed this is a matrix, isn't it, not all flow items support all flow actions, but not sure if it is possible to figure out that matrix.