From patchwork Fri Jul 6 01:02:21 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Hu, Jiayu" X-Patchwork-Id: 42445 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 38B9C1B5B9; Fri, 6 Jul 2018 02:54:30 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id AE5AC1B5B9 for ; Fri, 6 Jul 2018 02:54:28 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 05 Jul 2018 17:54:27 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,314,1526367600"; d="scan'208";a="213788563" Received: from dpdk15.sh.intel.com ([10.67.111.146]) by orsmga004.jf.intel.com with ESMTP; 05 Jul 2018 17:54:26 -0700 From: Jiayu Hu To: dev@dpdk.org Cc: thomas@monjalon.net, Jiayu Hu Date: Fri, 6 Jul 2018 09:02:21 +0800 Message-Id: <1530838944-51791-1-git-send-email-jiayu.hu@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1529646843-45903-1-git-send-email-jiayu.hu@intel.com> References: <1529646843-45903-1-git-send-email-jiayu.hu@intel.com> Subject: [dpdk-dev] [PATCH v4 0/3] Support UDP/IPv4 GSO 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" With the support of UDP Fragmentation Offload (UFO) and TCP Segmentation Offload (TSO) in virtio, VMs can exchange large UDP and TCP packets exceeding MTU between each other, which can greatly reduce per-packet processing overheads. When the destination of the large TCP and UDP packets is crossing machines, the host application needs to call two different libraries, GSO and IP fragmentation, to split the large packets respectively. However,the GSO and IP fragmentation library have quite different APIs, which greatly complicates the host application implementation. To simplify application development, we propose to support UDP/IPv4 fragmentation in the GSO library. With supporting UDP GSO, host applicationss can use the unified APIs to split large UDP and TCP packets. This patchset is to support UDP/IPv4 GSO. The first patch is to provide UDP GSO function, the second patch is to enable UDP/IPv4 GSO in the testpmd checksum forwarding engine, and the last patch is to update the programmer guide and testpmd user guide. Change log ========== v4: - update Acked-by and Tested-by information to commit log. v3: - replace rte_pktmbuf_mtod() with rte_pktmbuf_mtod_offset(). - fix meson build. - add updates to document for better explaining how UDP GSO works. V2: - fix fragment offset calculation bug. - add UDP GSO description in testpmd user guide. - shorten the second patch name. Jiayu Hu (3): gso: support UDP/IPv4 fragmentation app/testpmd: enable UDP GSO in csum engine gso: update documents for UDP/IPv4 GSO app/test-pmd/cmdline.c | 5 +- app/test-pmd/csumonly.c | 2 + app/test-pmd/testpmd.c | 2 +- .../generic_segmentation_offload_lib.rst | 10 +++ doc/guides/testpmd_app_ug/testpmd_funcs.rst | 7 ++ lib/librte_gso/Makefile | 1 + lib/librte_gso/gso_common.h | 3 + lib/librte_gso/gso_udp4.c | 81 ++++++++++++++++++++++ lib/librte_gso/gso_udp4.h | 42 +++++++++++ lib/librte_gso/meson.build | 2 +- lib/librte_gso/rte_gso.c | 24 +++++-- lib/librte_gso/rte_gso.h | 6 +- 12 files changed, 175 insertions(+), 10 deletions(-) create mode 100644 lib/librte_gso/gso_udp4.c create mode 100644 lib/librte_gso/gso_udp4.h