From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id E4945A04BF; Thu, 3 Sep 2020 16:34:18 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1B3041BEAF; Thu, 3 Sep 2020 16:34:18 +0200 (CEST) Received: from smtp-4.sys.kth.se (smtp-4.sys.kth.se [130.237.48.193]) by dpdk.org (Postfix) with ESMTP id 40AF9E07 for ; Thu, 3 Sep 2020 16:34:16 +0200 (CEST) Received: from smtp-4.sys.kth.se (localhost.localdomain [127.0.0.1]) by smtp-4.sys.kth.se (Postfix) with ESMTP id E95102604; Thu, 3 Sep 2020 16:34:15 +0200 (CEST) X-Virus-Scanned: by amavisd-new at kth.se Received: from smtp-4.sys.kth.se ([127.0.0.1]) by smtp-4.sys.kth.se (smtp-4.sys.kth.se [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 2G1L-JjLGYCD; Thu, 3 Sep 2020 16:34:14 +0200 (CEST) X-KTH-Auth: barbette [62.197.64.91] DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kth.se; s=default; t=1599143654; bh=UjdEDB+E+Sd3YPr5+GhFx2Na7G6VxWz3GgBMm+Kd4gE=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=bfA7pMdlEdNYqW1wUPLcs8gFhPA6EhxzNiOq9yHsdOhjH6ZRkfsce3vrC2Z7+3Xt3 Z1YpNHzEcOzf1Wu+X8thaAEHtNPAqjYFN/9EJPhw0VSI2fArw1YTDNvZwpRqeiPlDZ ONd0RjAzhV0d9wbiCjizk4gsezssXw1gHgvO/yYg= X-KTH-mail-from: barbette@kth.se Received: from [192.168.1.111] (host-62-197-64-91.dynamic.voo.be [62.197.64.91]) by smtp-4.sys.kth.se (Postfix) with ESMTPSA id 9A33C28F7; Thu, 3 Sep 2020 16:34:10 +0200 (CEST) To: Michael Baum , dev@dpdk.org Cc: Matan Azrad , Raslan Darawsheh , Viacheslav Ovsiienko References: <1599128029-2092-1-git-send-email-michaelba@nvidia.com> From: Tom Barbette Message-ID: Date: Thu, 3 Sep 2020 16:34:04 +0200 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.12.0 MIME-Version: 1.0 In-Reply-To: <1599128029-2092-1-git-send-email-michaelba@nvidia.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US Subject: Re: [dpdk-dev] [PATCH v1 00/18] mlx5 Rx DevX/Verbs separation 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Could you provide a cover letter? Thanks, Tom Le 03/09/2020 à 12:13, Michael Baum a écrit : > v1: > Initial version > > Michael Baum (18): > net/mlx5: fix Rx hash queue creation error flow > net/mlx5: fix Rx queue state update > net/mlx5: fix types differentiation in Rxq create > net/mlx5: mitigate Rx queue reference counters > net/mlx5: separate Rx queue object creations > net/mlx5: separate Rx interrupt handling > net/mlx5: share Rx control code > net/mlx5: rearrange the creation of RQ and CQ resources > net/mlx5: rearrange the creation of WQ and CQ object > net/mlx5: separate Rx queue object modification > net/mlx5: share Rx queue object modification > net/mlx5: separate Rx indirection table object creation > net/mlx5: separate Rx hash queue creation > net/mlx5: remove indirection table type field > net/mlx5: share Rx queue indirection table code > net/mlx5: share Rx hash queue code > net/mlx5: separate Rx queue drop > net/mlx5: share Rx queue drop action code > > drivers/net/mlx5/Makefile | 1 + > drivers/net/mlx5/linux/mlx5_os.c | 10 + > drivers/net/mlx5/linux/mlx5_verbs.c | 707 +++++++++++++ > drivers/net/mlx5/linux/mlx5_verbs.h | 4 + > drivers/net/mlx5/meson.build | 1 + > drivers/net/mlx5/mlx5.h | 73 +- > drivers/net/mlx5/mlx5_devx.c | 792 +++++++++++++- > drivers/net/mlx5/mlx5_flow_dv.c | 20 +- > drivers/net/mlx5/mlx5_flow_verbs.c | 35 +- > drivers/net/mlx5/mlx5_rxq.c | 1934 ++++++----------------------------- > drivers/net/mlx5/mlx5_rxtx.h | 84 +- > drivers/net/mlx5/mlx5_trigger.c | 67 +- > drivers/net/mlx5/mlx5_vlan.c | 2 +- > 13 files changed, 1954 insertions(+), 1776 deletions(-) >