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 68DD8A00C4; Thu, 29 Sep 2022 10:40:03 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5B07740FAE; Thu, 29 Sep 2022 10:40:03 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id 3476340694 for ; Thu, 29 Sep 2022 10:40:02 +0200 (CEST) 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 7456A62; Thu, 29 Sep 2022 11:40:00 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru 7456A62 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1664440800; bh=l28EOGO/yYVpiAZ/rZ2DRV4H/Ag6RtMQb+CLXb8Mt78=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=I/mC0kH/buE48Y3djewzoft9ztlbfMtBugmNATTCAd4G1ra9J2GIHikA7gQ+N7tX0 iIEpy1fMJq1JIe7DcFMUoWI3+aaW4/E2DQt4YuWCevaGsfoL+OVM4L9P0qeC/Lf3Yt p4FYk86rbkTaq1+nJo6bEe9PR1I2TGhOYOIMyKQs= Message-ID: <869763cc-c7d8-03d6-ff62-fc0c62000dbb@oktetlabs.ru> Date: Thu, 29 Sep 2022 11:40:00 +0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.13.0 Subject: Re: [PATCH 0/3] ethdev: AGE action preparation Content-Language: en-US To: Ori Kam Cc: Matan Azrad , Raslan Darawsheh , Michael Baum , dev@dpdk.org References: <20220921145409.511328-1-michaelba@nvidia.com> From: Andrew Rybchenko Organization: OKTET Labs In-Reply-To: <20220921145409.511328-1-michaelba@nvidia.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 @Ori, could you take a look at the patch series. On 9/21/22 17:54, Michael Baum wrote: > RFC's: > https://patchwork.dpdk.org/project/dpdk/patch/7a45693f478b1b721b4e05131141b526185a175c.1654063912.git.jackmin@nvidia.com/ > https://patchwork.dpdk.org/project/dpdk/patch/608febf8d5d3c434a1eddb2e56f425ebbd6ff0b4.1654063912.git.jackmin@nvidia.com/ > > Michael Baum (3): > ethdev: add strict queue to pre-configuration flow hints > ethdev: add queue-based API to report aged flow rules > ethdev: add structure for indirect AGE update > > app/test-pmd/cmdline_flow.c | 93 +++++++++- > app/test-pmd/config.c | 177 +++++++++++++++++++- > app/test-pmd/testpmd.h | 1 + > doc/guides/prog_guide/rte_flow.rst | 25 ++- > doc/guides/testpmd_app_ug/testpmd_funcs.rst | 90 +++++++++- > lib/ethdev/rte_flow.c | 22 +++ > lib/ethdev/rte_flow.h | 89 +++++++++- > lib/ethdev/rte_flow_driver.h | 7 + > lib/ethdev/version.map | 3 + > 9 files changed, 491 insertions(+), 16 deletions(-) >