From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (xvm-189-124.dc0.ghst.net [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4F431A04B5; Sun, 10 Jan 2021 10:10:26 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 31500140E6D; Sun, 10 Jan 2021 10:10:13 +0100 (CET) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by mails.dpdk.org (Postfix) with ESMTP id 29335140D5D for ; Sun, 10 Jan 2021 10:10:09 +0100 (CET) Received: from Internal Mail-Server by MTLPINE1 (envelope-from jiaweiw@nvidia.com) with SMTP; 10 Jan 2021 11:10:07 +0200 Received: from nvidia.com (gen-l-vrt-281.mtl.labs.mlnx [10.237.44.1]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 10A9A7O1007435; Sun, 10 Jan 2021 11:10:07 +0200 From: Jiawei Wang To: ferruh.yigit@intel.com, viacheslavo@nvidia.com, matan@nvidia.com, orika@nvidia.com Cc: dev@dpdk.org, rasland@nvidia.com Date: Sun, 10 Jan 2021 11:10:04 +0200 Message-Id: <1610269807-311533-1-git-send-email-jiaweiw@nvidia.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dpdk-dev] [PATCH 0/3] Add RSS action support in the sample sub-actions list 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" Currently the sample flow only supports Queue action in NIC-Rx domain. This patchset adds the RSS action support in the sample sub-actions list. The examples for the sample flow with RSS action and result as below: set sample_actions 0 mark id 0x12 / rss queues 0 1 2 3 end / end flow create 0 ingress group 1 pattern eth / end actions sample ratio 1 index 0 / jump group 2 / end This flow will result in all the matched ingress packets will be jumped to next table, and the each packet will be marked and sent to rss queues of the control application. Jiawei Wang (3): app/testpmd: add RSS support in sample action net/mlx5: handle the RSS action in the sample doc: update RSS support in sample action app/test-pmd/cmdline_flow.c | 26 ++++ doc/guides/nics/mlx5.rst | 1 + doc/guides/rel_notes/release_21_02.rst | 5 + drivers/net/mlx5/mlx5_flow.c | 24 +++- drivers/net/mlx5/mlx5_flow_dv.c | 226 +++++++++++++++++++++++---------- 5 files changed, 207 insertions(+), 75 deletions(-) -- 1.8.3.1