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 C9904A00C2; Mon, 26 Sep 2022 16:57:15 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A51D640DF7; Mon, 26 Sep 2022 16:57:15 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id CD23F4069B for ; Mon, 26 Sep 2022 16:57:14 +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 20EB85E; Mon, 26 Sep 2022 17:57:14 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru 20EB85E DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1664204234; bh=Ovbs8fbricFMzu7sDD3PVkKTz9uHBQC4CI7KkOg941U=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=KeLrUAmUNDUzN5zLzDimbv1I2emHoDDs2ZALvpyuVDhNmqUEYxkzopETA8kp3kKLF +wPF9PWRQcJzibVzL6K2IXPOdiBhQ0Hn5qPsgJmqCTGCdjp7XumcRhoEhhqQ0Vr9e5 XW0oV27FZy1RzXbm0YivpYNzw+MBKL1dN2RF4j6k= Message-ID: <599a0c5e-8c1c-85b4-2c14-2babeb39ba5f@oktetlabs.ru> Date: Mon, 26 Sep 2022 17:57:13 +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 v2] ethdev: add GTP PSC QFI field Content-Language: en-US To: Dariusz Sosnowski , Ori Kam , Aman Singh , Yuying Zhang , Thomas Monjalon , Ferruh Yigit Cc: dev@dpdk.org References: <20220921101839.1711058-1-dsosnowski@nvidia.com> <20220921143202.1790802-1-dsosnowski@nvidia.com> From: Andrew Rybchenko Organization: OKTET Labs In-Reply-To: <20220921143202.1790802-1-dsosnowski@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 On 9/21/22 17:32, Dariusz Sosnowski wrote: > This patch introduces the GTP PSC QFI modify field support and adds > the testpmd CLI command support. > > An example for copying GTP QFI field using modify_field action: > > modify_field op set > dst_type meta > src_type gtp_psc_qfi > width 8 > > An example of setting GTP QFI field value to 0x1f using modify_field > action: > > modify_field op set > dst_type gtp_psc_qfi > src_type value src_value 1f > width 8 > > Signed-off-by: Dariusz Sosnowski > Acked-by: Ori Kam > --- > > v2: > > * Squashed ethdev and testpmd commits. > > app/test-pmd/cmdline_flow.c | 2 +- > lib/ethdev/rte_flow.h | 1 + > 2 files changed, 2 insertions(+), 1 deletion(-) > Applied to dpdk-next-net/main, thanks.