From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f178.google.com (mail-wr0-f178.google.com [209.85.128.178]) by dpdk.org (Postfix) with ESMTP id DEB1A2BEB for ; Mon, 16 Apr 2018 18:22:00 +0200 (CEST) Received: by mail-wr0-f178.google.com with SMTP id d1so27701876wrj.13 for ; Mon, 16 Apr 2018 09:22:00 -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=hZR0IfMDCr4LEqDRKmtQia9s8rKuRLmQDtG/NVwlka0=; b=1TpYR/7lAn/28VzeCiiPWp6Yd0zgcqS8tkpFh6ikt94Fsfzoz2FCLP3ORobmmZRdne Qd9Pk7bfaydhTgr+dWxqDu8rp8DRs41BqJGGjcvF8J60WAdFvsX0wXvJLpBBZHcISQ4d l0udhmKOII5MeJmGAOKAFVIj+93znGXBKOhyPwBVzFcP2fBynkXUNAC9mgrVDSypfhws PNyuFwIieqIcogT6aTyhB0jztSvMXSglP10Nu/0jHDMyIUr3CV1I3m1BLDClhiLAQEoS YSOl4lYBZcTUuiAGgj9UG0DXR0tMCdtKCUS18ihsY3Ggk6zSlLb85dP4MLA6JxlmJt6M XOlg== 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=hZR0IfMDCr4LEqDRKmtQia9s8rKuRLmQDtG/NVwlka0=; b=DaCJ1jl2afD/+QHOnZLoVwlGIncLGg+cAIL0r/K+l++GOEtM+/m0/fSim371tOhhk/ xDLklMJgiEOHwUk8B0tV/deaxweDtcpV1//nexMc4pj227xA1GcFyNJFN6TfdiqtaCBs NbGJnaQioIZZADBLVbTYWUi8mnnQH7PGsmZfNGw1szs5i7UlWGbSNU2KNoFWmy8H0d7M ZJvCtqridBpJJeC9Fgv7fNHllQEY1PdBrS/7KS0k+FGy628kQO9UAsAFm9orV4IvoFHg k9peh3W2Dgu83ZH18oYGH6koAuVRs/J/AFrVesOFXDgVh7XRrvfw1BiivuZ8Kx1YB2Gx xcwQ== X-Gm-Message-State: ALQs6tDa7UFtHTpliEJcvCzhjVnH+hnBWdJyEOeLYWQmZxdYbOgxFwhV ytVqMIZn//Eni7+4jzmuD9TRAF/H X-Google-Smtp-Source: AIpwx4/s2OZ/6EDyPDzJGGXmbOgZ2k+hbCg2jnacAzvf6mJSLYXF4LzN5MpOPwUw6aWmxzZCz2v90w== X-Received: by 10.28.144.196 with SMTP id s187mr11049085wmd.82.1523895720560; Mon, 16 Apr 2018 09:22:00 -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 j21sm16100807wrb.49.2018.04.16.09.21.59 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 16 Apr 2018 09:21:59 -0700 (PDT) Date: Mon, 16 Apr 2018 18:21:46 +0200 From: Adrien Mazarguil To: dev@dpdk.org Message-ID: <20180416150058.2620-1-adrien.mazarguil@6wind.com> References: <20180410161132.8776-1-adrien.mazarguil@6wind.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180410161132.8776-1-adrien.mazarguil@6wind.com> X-Mailer: git-send-email 2.11.0 Subject: [dpdk-dev] [PATCH v5 00/11] 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: Mon, 16 Apr 2018 16:22:01 -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. v5 changes: - No change, rebased series to address conflicts. v4 changes: - Rebased again. - The reliance on rte_eth_dev_rss_hash_conf_get() was removed from patch #7, see updated patch for details. v3 changes: - Rebased series. - Dropped unnecessary "net/sfc: fix endian conversions in flow API". - Dropped "ethdev: fix ABI version in meson build", handled by prior commit d9736a248785 ("ethdev: fix library version in meson build"). v2 changes: - mlx5 fix (patch #3). - bnxt fix (patch #4). - sfc fix (patch #6). - Missing include (patch #13). Adrien Mazarguil (11): 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 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 missing include in flow API app/test-pmd/cmdline.c | 2 + app/test-pmd/cmdline_flow.c | 252 ++++++++++++++++++++--- 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 + lib/librte_ether/rte_flow.c | 145 +++++++++---- lib/librte_ether/rte_flow.h | 2 + 10 files changed, 494 insertions(+), 128 deletions(-) -- 2.11.0