From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f41.google.com (mail-wm0-f41.google.com [74.125.82.41]) by dpdk.org (Postfix) with ESMTP id 311E2C67E for ; Fri, 24 Jun 2016 15:18:28 +0200 (CEST) Received: by mail-wm0-f41.google.com with SMTP id a66so25242319wme.0 for ; Fri, 24 Jun 2016 06:18:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=k7QBVBAL24Teni8lqYFlk9BBPKy3DQxNNQU/KDlljTo=; b=xsdN/oRLHeTUxMx8CebcQqB2M3ONWcF2HrU8/RULQIZRsZHjr3yuPxwfO29oFbZ9tW xFBh76LVtEPXP2Zoj4B+GENfAdn2HmIePOkrWqs6d4EBR975P0GZbu7Hm6Y2VkILH37K uoNZufQEdfdMzdyyXfumvtYauBJykTk/4V9wTYlDh3vPMIegRVIFOQgVOxaiZloqGgX/ berViZUV+Pdbe/6utNMYs6by5RoJGeoGBRaWflQ1pNejqzoPJNmeTaWMThI/mfv23up5 A+gwbJDOpeRkVqIA1bjesT5Skmn1WZ7APjTjSWprR2NSIzDFYOg7GtM9SsYOqiTKGE6P I3lA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=k7QBVBAL24Teni8lqYFlk9BBPKy3DQxNNQU/KDlljTo=; b=birlcWm5vo6eu55Rp8J9OKT4/PZcZp9H1V5sg0+SKbehG0JazZyjozE8V9XjdOb0Mz pHfFMhWkOFYYl3BTnGhKVAkfSSej7qer9AVNG27hokNLvHfSp1TSw5dGS9AJdmNhtZES xDRubKn+ZSIttUtG7IYnoYk5hnEKM1y8muQ9ypZej7m209uG1/pG62/TM7DOQE6lK+wV CJBLxh1o5MZ5UTHbLunPoO+hl3762Q1IPYMXumjHI31SJ5l0QEd1VCVKcZjQfZJVT/XR ghx9Rf30VTirX9BxqjlTIIviY5tWftY34WLpRpZbOIhS+g0AANUQwfDFn/obwAUiM+Fg NzGw== X-Gm-Message-State: ALyK8tLIkGa/uruKkolTwx6NLzz8P+UD3QV1rex5DEmtjEKrjUC/4JXF322VnNcbR1iXILE4 X-Received: by 10.194.114.163 with SMTP id jh3mr4144435wjb.173.1466774307784; Fri, 24 Jun 2016 06:18:27 -0700 (PDT) Received: from ping.vm.6wind.com (guy78-3-82-239-227-177.fbx.proxad.net. [82.239.227.177]) by smtp.gmail.com with ESMTPSA id m125sm1279533wmm.8.2016.06.24.06.18.26 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 24 Jun 2016 06:18:27 -0700 (PDT) From: Nelio Laranjeiro To: dev@dpdk.org Cc: Bruce Richardson , Ferruh Yigit Date: Fri, 24 Jun 2016 15:17:39 +0200 Message-Id: <1466774284-20932-1-git-send-email-nelio.laranjeiro@6wind.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1466758261-25986-1-git-send-email-nelio.laranjeiro@6wind.com> References: <1466758261-25986-1-git-send-email-nelio.laranjeiro@6wind.com> Subject: [dpdk-dev] [PATCH v7 00/25] Refactor mlx5 to improve performance X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Jun 2016 13:18:28 -0000 Enhance mlx5 with a data path that bypasses Verbs. The first half of this patchset removes support for functionality completely rewritten in the second half (scatter/gather, inline send), while the data path is refactored without Verbs. The PMD remains usable during the transition. This patchset must be applied after "Miscellaneous fixes for mlx4 and mlx5". Changes in v7: - Fixed a bug introduced by change in v5. Changes in v6: - None. Changes in v5: - Fixed checkpatches errors. Changes in v4: - Fixed errno return value of mlx5_args(). - Fixed long line above 80 characters. Changes in v3: - Rebased patchset on top of next-net/rel_16_07. Changes in v2: - Rebased patchset on top of dpdk/master. - Fixed CQE size on Power8. - Fixed mbuf assertion failure in debug mode. - Fixed missing class_id field in rte_pci_id by using RTE_PCI_DEVICE. Adrien Mazarguil (7): mlx5: replace countdown with threshold for Tx completions mlx5: add debugging information about Tx queues capabilities mlx5: check remaining space while processing Tx burst mlx5: resurrect Tx gather support mlx5: work around spurious compilation errors mlx5: remove redundant Rx queue initialization code mlx5: make Rx queue reinitialization safer Nelio Laranjeiro (17): drivers: fix PCI class id support mlx5: split memory registration function mlx5: remove Tx gather support mlx5: remove Rx scatter support mlx5: remove configuration variable mlx5: remove inline Tx support mlx5: split Tx queue structure mlx5: split Rx queue structure mlx5: update prerequisites for upcoming enhancements mlx5: add definitions for data path without Verbs mlx5: add support for configuration through kvargs mlx5: add Tx/Rx burst function selection wrapper mlx5: refactor Rx data path mlx5: refactor Tx data path mlx5: handle Rx CQE compression mlx5: add support for multi-packet send mlx5: resurrect Rx scatter support Yaacov Hazan (1): mlx5: add support for inline send config/common_base | 2 - doc/guides/nics/mlx5.rst | 94 +- drivers/crypto/qat/rte_qat_cryptodev.c | 5 +- drivers/net/mlx4/mlx4.c | 18 +- drivers/net/mlx5/Makefile | 49 +- drivers/net/mlx5/mlx5.c | 186 ++- drivers/net/mlx5/mlx5.h | 10 + drivers/net/mlx5/mlx5_defs.h | 26 +- drivers/net/mlx5/mlx5_ethdev.c | 195 ++- drivers/net/mlx5/mlx5_fdir.c | 20 +- drivers/net/mlx5/mlx5_mr.c | 283 ++++ drivers/net/mlx5/mlx5_prm.h | 163 +++ drivers/net/mlx5/mlx5_rxmode.c | 8 - drivers/net/mlx5/mlx5_rxq.c | 767 ++++------- drivers/net/mlx5/mlx5_rxtx.c | 2232 +++++++++++++++++++------------- drivers/net/mlx5/mlx5_rxtx.h | 176 ++- drivers/net/mlx5/mlx5_txq.c | 370 +++--- drivers/net/mlx5/mlx5_vlan.c | 6 +- drivers/net/nfp/nfp_net.c | 12 +- 19 files changed, 2671 insertions(+), 1951 deletions(-) create mode 100644 drivers/net/mlx5/mlx5_mr.c create mode 100644 drivers/net/mlx5/mlx5_prm.h -- 2.1.4