From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f51.google.com (mail-wm0-f51.google.com [74.125.82.51]) by dpdk.org (Postfix) with ESMTP id 6CBA31C6BA for ; Wed, 4 Apr 2018 16:57:59 +0200 (CEST) Received: by mail-wm0-f51.google.com with SMTP id w2so17140144wmw.1 for ; Wed, 04 Apr 2018 07:57:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=date:from:to:subject:message-id:references:mime-version :content-disposition:in-reply-to; bh=q2fi3YweBQKNC3dDmXCScbFP2XjH5HbGvREvknRbTzs=; b=rR1mLZfVO0I+W8ZkhGI+0jYyUJAt7NHz/Wmu/amxslillVu4SbXB2oBScdV8fbNVWI uR2q5dPAxnwNQhNs/pLo8lPxi1EoZHU7Ld+yM1qLwxb7TBAg60QgOD+5KA2gpK3bNtkk yYcS85FlbUkYAMOCuDgncAoWbkzo86FCgb1h6owirPExhmBzTeikwtAuCttNDnTPpH+O 72LchUn+UYPC89wlCQkEkfK4QXPO36x5yrRPSPSv3V7m1Meg2QOLmh/fQuE5yoOS4xHj GQokFMvNNwcS1+ULLk9FUh0DzHM8jb3GiLeKXmWAMVlbVVbNlZZ+E0Os+vv+Vq/dqWwW S9YQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=q2fi3YweBQKNC3dDmXCScbFP2XjH5HbGvREvknRbTzs=; b=ovtTYkqWG9vmYEEDul6qzjUGfvexkkGxCRCbE34dBmrE+TPUwfNtem8r20X86IOnKC 7RbcsBXL+/zDHiZXZJcD82ph5iiVk0nYwACK+XMzTc5T1478CgnTajZmY8b/KGya58Zd aL5K6M8lkcfwMiPNMs2hn1EsiOzhtbeE52NrZ6rgI1M4Go/eB8vp+7rUTEpbnQpH9DUE PMiCKq9T4QgNXt6l3QHIU5cITT5AVeCGpIwampA5pmssxHHuZw/oZdQ8AZrHKUejBVwW YnVIbORrJW8LdSFp5mPFHMWGhyoFDF0lPszS7y1N5aUOrCcvX6wSe1wYn7jhZH56+Kqq KxMA== X-Gm-Message-State: ALQs6tCKm5MZvy5bAjAHe/7xD42V2/JT3QuOcNMBMg0GFKcBAvI26Vw0 T5AHRcF9WoJMgeB181Thl9ssTwMJ X-Google-Smtp-Source: AIpwx49tbXSPZ7RtFmEjJb+fsSRaQBdo4SF9cCSqQylBvlZDXVO1qrltuJVOTxztiAQXdt0slTfkWQ== X-Received: by 10.28.247.16 with SMTP id v16mr7060890wmh.157.1522853879135; Wed, 04 Apr 2018 07:57:59 -0700 (PDT) Received: from 6wind.com (host.78.145.23.62.rev.coltfrance.com. [62.23.145.78]) by smtp.gmail.com with ESMTPSA id j76sm6118982wmd.17.2018.04.04.07.57.58 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 04 Apr 2018 07:57:58 -0700 (PDT) Date: Wed, 4 Apr 2018 16:57:45 +0200 From: Adrien Mazarguil To: dev@dpdk.org Message-ID: <20180404144805.11966-1-adrien.mazarguil@6wind.com> References: <20180323124725.15806-1-adrien.mazarguil@6wind.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180323124725.15806-1-adrien.mazarguil@6wind.com> X-Mailer: git-send-email 2.11.0 Subject: [dpdk-dev] [PATCH v2 00/13] Bunch of flow API-related fixes X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Apr 2018 14:57:59 -0000 This series contains several fixes for rte_flow and its implementation in PMDs and testpmd. Upcoming work on the flow API depends on it. v2 changes: - mlx5 fix (patch #3). - bnxt fix (patch #4). - sfc fix (patch #6). - Missing include (patch #13). Adrien Mazarguil (13): net/mlx4: fix RSS resource leak in case of error net/mlx4: fix ignored RSS hash types net/mlx5: fix RSS flow action bounds check net/bnxt: fix matching of flow API item masks net/sfc: fix endian conversions in flow API app/testpmd: fix flow completion for RSS queues app/testpmd: fix lack of flow action configuration app/testpmd: fix RSS flow action configuration app/testpmd: fix missing RSS fields in flow action ethdev: fix shallow copy of flow API RSS action ethdev: fix missing boolean values in flow command ethdev: fix ABI version in meson build ethdev: fix missing include in flow API app/test-pmd/cmdline_flow.c | 255 ++++++++++++++++++++--- app/test-pmd/config.c | 160 +++++++++----- app/test-pmd/testpmd.h | 13 ++ doc/guides/testpmd_app_ug/testpmd_funcs.rst | 8 + drivers/net/bnxt/bnxt_filter.c | 14 +- drivers/net/mlx4/mlx4_flow.c | 17 +- drivers/net/mlx5/mlx5_flow.c | 9 + drivers/net/sfc/sfc_flow.c | 13 +- lib/librte_ether/meson.build | 2 +- lib/librte_ether/rte_flow.c | 145 +++++++++---- lib/librte_ether/rte_flow.h | 2 + 11 files changed, 503 insertions(+), 135 deletions(-) -- 2.11.0