From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id B68CCA045E for ; Mon, 27 May 2019 20:45:05 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 5F421A49; Mon, 27 May 2019 20:45:04 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id C2B259E4 for ; Mon, 27 May 2019 20:45:02 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 May 2019 11:45:01 -0700 X-ExtLoop1: 1 Received: from sivswdev08.ir.intel.com ([10.237.217.47]) by fmsmga005.fm.intel.com with ESMTP; 27 May 2019 11:45:00 -0700 From: Konstantin Ananyev To: dev@dpdk.org Cc: akhil.goyal@nxp.com, Konstantin Ananyev Date: Mon, 27 May 2019 19:44:45 +0100 Message-Id: <20190527184448.21264-1-konstantin.ananyev@intel.com> X-Mailer: git-send-email 2.18.0 Subject: [dpdk-dev] [PATCH 0/3] examples/ipsec-secgw: support packet fragmentation 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" Add into ipsec-secgw ability to fragment packet bigger then mtu, and reassemble fragmented packet. To support these features ipsec-secgw relies on librte_ipsec ability to handle multi-segment packets. Also when reassemble/fragmentation support is enabled, attached crypto devices have to support 'In Place SGL' offload capability. To be able to work properly these changes require the following patches: [1] lib/librte_ip_frag: Remove PKT_TX_IP_CKSUM offload flags http://patches.dpdk.org/patch/53475/mbox/ [2] ipsec: support multi-segment packets http://patches.dpdk.org/patch/53715/mbox/ to be applied first. Konstantin Ananyev (3): examples/ipsec-secgw: fix invalid packet length examples/ipsec-secgw: support packet fragmentation and reassembly examples/ipsec-secgw: add multi-segment test cases examples/ipsec-secgw/ipsec-secgw.c | 403 ++++++++++++++++++++--- examples/ipsec-secgw/ipsec.h | 1 + examples/ipsec-secgw/meson.build | 2 +- examples/ipsec-secgw/test/common_defs.sh | 18 +- examples/ipsec-secgw/test/data_rxtx.sh | 18 +- examples/ipsec-secgw/test/linux_test4.sh | 17 +- examples/ipsec-secgw/test/linux_test6.sh | 17 +- examples/ipsec-secgw/test/run_test.sh | 5 +- 8 files changed, 423 insertions(+), 58 deletions(-) -- 2.17.1