From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 8BB7B378B for ; Wed, 22 Feb 2017 17:10:22 +0100 (CET) Received: from Internal Mail-Server by MTLPINE1 (envelope-from shahafs@mellanox.com) with ESMTPS (AES256-SHA encrypted); 22 Feb 2017 18:10:19 +0200 Received: from arch009.mtl.labs.mlnx (arch009.mtl.labs.mlnx [10.7.12.209]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id v1MGAJDP008191; Wed, 22 Feb 2017 18:10:19 +0200 Received: from arch009.mtl.labs.mlnx (localhost [127.0.0.1]) by arch009.mtl.labs.mlnx (8.14.7/8.14.7) with ESMTP id v1MGAJgP046830; Wed, 22 Feb 2017 18:10:19 +0200 Received: (from root@localhost) by arch009.mtl.labs.mlnx (8.14.7/8.14.7/Submit) id v1MGAFGR046827; Wed, 22 Feb 2017 18:10:15 +0200 From: Shahaf Shuler To: adrien.mazarguil@6wind.com, nelio.laranjeiro@6wind.com, thomas.monjalon@6wind.com, jingjing.wu@intel.com Cc: dev@dpdk.org Date: Wed, 22 Feb 2017 18:09:56 +0200 Message-Id: <1487779800-46491-1-git-send-email-shahafs@mellanox.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dpdk-dev] [PATCH 0/4] net/mlx5 add TSO support 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: Wed, 22 Feb 2017 16:10:23 -0000 This patchset adds support for hardware TSO on mlx5 PMD. * Patches 1/4 and 2/4 adds TSO flags and capabilities to ethdev layer. * Patch 3/4 adds support for the flag introduced in patch 2/4. This patch also simplifies the testing of patch 4/4. * Patch 4/4 implement support for hardware TSO and demonstrate the use of patches 1/2 and 2/2. [PATCH 1/4] ethdev: add Tx offload limitations [PATCH 2/4] ethdev: add TSO disable flag [PATCH 3/4] app/testpmd: add TSO disable to test options [PATCH 4/4] net/mlx5: add hardware TSO support