From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f48.google.com (mail-wm0-f48.google.com [74.125.82.48]) by dpdk.org (Postfix) with ESMTP id D2E541D027 for ; Fri, 6 Apr 2018 15:22:46 +0200 (CEST) Received: by mail-wm0-f48.google.com with SMTP id x82so3362735wmg.1 for ; Fri, 06 Apr 2018 06:22:46 -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=OPtWMEcTTTSLV662B3G4j9Yf6pHRXUlUk1HpaQz1+WE=; b=o1HXOicI2hZxl+TcxELAdd86cXae4G+DqbG/6WWTXh4JNLKsAojpEyfQ2IVfk6n7WT /Nn8SEBhJHKbhDcvXjhv6dvGejh8eF2xkZuNs5K/Ms82HsFI/Pv2VX9Jl98C6MKb2tqY jN/kgqpOY2rnF8GyKTqHtdkeUHRdwVqziABdPqjb2E9swmtlpO+jqzphKxtLU4EyKFzK HMwu6GQuNDf2sF/dH10G7u2HAIWqJlzST7Gp4/VgYo67ytZA4KIsxVPOVN+SiOsWbhXf Uy2H3jVbjmijT3oAzD6EgWOu6up3s8t9kttrcX8pn2t0hlSsoMdLth5ZuxSZ0yUYiOas Kjag== 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=OPtWMEcTTTSLV662B3G4j9Yf6pHRXUlUk1HpaQz1+WE=; b=TSpasPBU3dH5G5f5OXYNVAiMqMHBUgmd/WoQOBjerJPinanWhxyrKFW8PSCFLxdopi EU1r/qc2F/grx3flj9QSvK2CqgqFcjdMfY5DugBGpsB4oTN5yD9uWUJFo6c4/8Xl/I9G AaxhNculldrJMPa0UWbili2tlUA8jY5fEDtKcW0wE303bgEcXk0QOyfwh04BLLiXVWGE zoxX5nYLUAi2lODyioXt2YY/dQf7R6X2+Z97HJ6GcAXCKIi8As04apE/pdPwvp4xKuim myUsDHLIPWG1GDAbBkzt3gLeInrFZxxasKQY1r/GLSOrUc2Mps5lRy0WMnoaACoqpn04 z8PQ== X-Gm-Message-State: ALQs6tCs1gpLv5bEwf5yUQTDMCetcZZhdaJuECnUw5ZWoDsvkp4ZE9Ss REp8fLadbYh2GrHQYaiYHF9vJs1X X-Google-Smtp-Source: AIpwx4/Bga8ce75kZO+d78pVJlrH2drpFJmckiBNtGv9fiJ0XKVdvLz94aokc5Bu7VAuo8J2tJdF8Q== X-Received: by 10.28.231.1 with SMTP id e1mr12534456wmh.76.1523020966503; Fri, 06 Apr 2018 06:22:46 -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 g75sm1506239wmc.47.2018.04.06.06.22.45 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 06 Apr 2018 06:22:45 -0700 (PDT) Date: Fri, 6 Apr 2018 15:22:32 +0200 From: Adrien Mazarguil To: dev@dpdk.org Message-ID: <20180406131243.19037-1-adrien.mazarguil@6wind.com> References: <20180404144805.11966-1-adrien.mazarguil@6wind.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180404144805.11966-1-adrien.mazarguil@6wind.com> X-Mailer: git-send-email 2.11.0 Subject: [dpdk-dev] [PATCH v3 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: Fri, 06 Apr 2018 13:22:47 -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. 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_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 + lib/librte_ether/rte_flow.c | 145 +++++++++---- lib/librte_ether/rte_flow.h | 2 + 9 files changed, 495 insertions(+), 128 deletions(-) -- 2.11.0