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 DB3C741BAB; Thu, 2 Feb 2023 10:51:39 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7E1E1406A2; Thu, 2 Feb 2023 10:51:39 +0100 (CET) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id 155C340689 for ; Thu, 2 Feb 2023 10:51:38 +0100 (CET) Received: from [192.168.38.17] (aros.oktetlabs.ru [192.168.38.17]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id 5181050; Thu, 2 Feb 2023 12:51:37 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru 5181050 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1675331497; bh=duHS8zfA9hieBsy9IbE3VUFttzqs5/M4qP39FGsY2y8=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=tHDuW40Ch+C4lrG7o9WmHbnprwxm7jCptdtzuYdIL4ZCLquzycN8A8ZnBeaicJeUG pWxrk9FP6B+PcYqZNkFckfaaZlCyDY1YoFW6zuuZGv4mcQ/EvdnrM/rvsggqWivske A6mgXpju7x0xp5t5qhgbllMxMXm1E7+/vmnkmpR8= Message-ID: <2326ea09-e2a5-f648-933a-95fe1d7afdd9@oktetlabs.ru> Date: Thu, 2 Feb 2023 12:51:37 +0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.6.0 Subject: Re: [PATCH v5 1/8] ethdev: use Ethernet protocol struct for flow matching Content-Language: en-US To: Ferruh Yigit , Thomas Monjalon , Wisam Jaddo , Ori Kam , Aman Singh , Yuying Zhang , Ajit Khaparde , Somnath Kotur , Chas Williams , "Min Hu (Connor)" , Rahul Lakkireddy , Hemant Agrawal , Sachin Saxena , Simei Su , Wenjun Wu , John Daley , Hyong Youb Kim , Ziyang Xuan , Xiaoyun Wang , Guoyang Zhou , Dongdong Liu , Yisen Zhuang , Beilei Xing , Jingjing Wu , Qiming Yang , Qi Zhang , Junfeng Guo , Rosen Xu , Matan Azrad , Viacheslav Ovsiienko , Liron Himi , Chaoyong He , =?UTF-8?Q?Niklas_S=c3=b6derlund?= , Jiawen Wu , Jian Wang Cc: David Marchand , dev@dpdk.org References: <20221025214410.715864-1-thomas@monjalon.net> <20230126161904.864517-1-ferruh.yigit@amd.com> <20230126161904.864517-2-ferruh.yigit@amd.com> From: Andrew Rybchenko Organization: OKTET Labs In-Reply-To: <20230126161904.864517-2-ferruh.yigit@amd.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit 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 On 1/26/23 19:18, Ferruh Yigit wrote: > From: Thomas Monjalon > > As announced in the deprecation notice, flow item structures > should re-use the protocol header definitions from the directory lib/net/. > The Ethernet headers (including VLAN) structures are used > instead of the redundant fields in the flow items. > > The remaining protocols to clean up are listed for future work > in the deprecation list. > Some protocols are not even defined in the directory net yet. > > Signed-off-by: Thomas Monjalon Acked-by: Andrew Rybchenko