From patchwork Tue Mar 31 21:52:35 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Kozyrev X-Patchwork-Id: 67558 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 15FCAA0562; Tue, 31 Mar 2020 23:53:06 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id BAD1E1C1B6; Tue, 31 Mar 2020 23:52:51 +0200 (CEST) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id BC4011C199 for ; Tue, 31 Mar 2020 23:52:46 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from akozyrev@mellanox.com) with ESMTPS (AES256-SHA encrypted); 1 Apr 2020 00:52:45 +0300 Received: from pegasus02.mtr.labs.mlnx. (pegasus02.mtr.labs.mlnx [10.210.16.122]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 02VLqjEI014122; Wed, 1 Apr 2020 00:52:45 +0300 From: Alexander Kozyrev To: dev@dpdk.org Cc: rasland@mellanox.com, matan@mellanox.com, viacheslavo@mellanox.com, ferruh.yigit@intel.com, thomas@monjalon.net Date: Tue, 31 Mar 2020 21:52:35 +0000 Message-Id: <1585691559-17409-1-git-send-email-akozyrev@mellanox.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dpdk-dev] [PATCH 0/4] net/mlx5: add large packet size support to MPRQ 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" In order to support the 9K MTU the MPRQ feature should be updated to allow a packet to take more than one stride (single linear buffer). Receiving a packet into multiple adjacent strides should be implemented. The reason preventing the packet to be received into multiple strides is that the data buffer must be preceded with some HEAD_ROOM space. In the current implementation the HEAD_ROOM space is borrowed by the PMD from the tail of the preceding stride. If packet takes multiple strides the tail of stride may be overwritten with a packet data and the memory can't be borrowed to provide the HEAD_ROOM space for the next packet. Special care is needed to prevent the HEAD_ROOM corruption as such: - copy a whole packet into a separate memory buffer if scatter is off - copy an overlapping data only and craft a multi-segment mbuf otherwise After multi-stride support for packets receiving is in place it is possible to reduce the stride size for more efficient memory utilization. Introduce the mprq_log_stride_size device parameter to configure a stride size for MPRQ. Default stride size is set to 2048 bytes. Alexander Kozyrev (4): net/mlx5: add a devarg to specify MPRQ stride size net/mlx5: enable MPRQ multi-stride operations doc: add a decsription for MPRQ stride size devarg net/mlx5: add multi-segment packets in MPRQ mode doc/guides/nics/mlx5.rst | 9 +++ doc/guides/rel_notes/release_20_05.rst | 1 + drivers/net/mlx5/mlx5.c | 34 ++++++++-- drivers/net/mlx5/mlx5.h | 1 + drivers/net/mlx5/mlx5_defs.h | 3 + drivers/net/mlx5/mlx5_rxq.c | 43 +++++-------- drivers/net/mlx5/mlx5_rxtx.c | 113 +++++++++++++++++++-------------- drivers/net/mlx5/mlx5_rxtx.h | 2 +- 8 files changed, 125 insertions(+), 81 deletions(-)