From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.7 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9F443C73C7C for ; Wed, 10 Jul 2019 11:23:20 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 2F8402064A for ; Wed, 10 Jul 2019 11:23:20 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 2F8402064A Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2F1412C60; Wed, 10 Jul 2019 13:23:19 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 3A3AA1C01 for ; Wed, 10 Jul 2019 13:23:16 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 10 Jul 2019 04:23:16 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.63,474,1557212400"; d="scan'208";a="364902147" Received: from sivswdev08.ir.intel.com (HELO localhost.localdomain) ([10.237.217.47]) by fmsmga006.fm.intel.com with ESMTP; 10 Jul 2019 04:23:14 -0700 From: Bernard Iremonger To: dev@dpdk.org, konstantin.ananyev@intel.com, akhil.goyal@nxp.com Cc: Bernard Iremonger Date: Wed, 10 Jul 2019 12:23:08 +0100 Message-Id: <1562757790-22455-1-git-send-email-bernard.iremonger@intel.com> X-Mailer: git-send-email 1.7.0.7 In-Reply-To: <1560351121-21234-1-git-send-email-bernard.iremonger@intel.com> References: <1560351121-21234-1-git-send-email-bernard.iremonger@intel.com> Subject: [dpdk-dev] [PATCH v7 0/2] examples/ipsec-secgw: fix 1st pkt dropped 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" This patchset fixes the issue of the first inbound packet being dropped for inline crypto. Changes in v7: -------------- Rebased to DPDK 19.08-rc1 Changes in v6: -------------- Rebased to latest master. Minor changes to the following functions in ipsec.c: create_lookaside_session() create_inline_session() Bernard Iremonger (2): examples/ipsec-secgw: fix 1st pkt dropped for inline crypto examples/ipsec-secgw/test: fix inline test scripts examples/ipsec-secgw/ipsec-secgw.c | 244 +++++++-------- examples/ipsec-secgw/ipsec.c | 449 ++++++++++++++------------- examples/ipsec-secgw/ipsec.h | 5 +- examples/ipsec-secgw/ipsec_process.c | 9 +- examples/ipsec-secgw/sa.c | 46 ++- examples/ipsec-secgw/test/trs_aesgcm_defs.sh | 10 - examples/ipsec-secgw/test/tun_aesgcm_defs.sh | 10 - 7 files changed, 403 insertions(+), 370 deletions(-) Changes in v5: ------------- The v2 patchset has been rebased to the latest master. The v4 patchset has been dropped as it caused issues with the lookaside code which we are unable to test. Bernard Iremonger (2): examples/ipsec-secgw: fix 1st pkt dropped for inline crypto examples/ipsec-secgw/test: fix inline test scripts examples/ipsec-secgw/ipsec-secgw.c | 244 +++++++++++++-------------- examples/ipsec-secgw/ipsec.c | 122 +++++++++----- examples/ipsec-secgw/ipsec.h | 5 +- examples/ipsec-secgw/ipsec_process.c | 9 +- examples/ipsec-secgw/sa.c | 46 +++-- examples/ipsec-secgw/test/trs_aesgcm_defs.sh | 10 -- examples/ipsec-secgw/test/tun_aesgcm_defs.sh | 10 -- 7 files changed, 245 insertions(+), 201 deletions(-) Changes in v2: ------------- The first three patches of the v1 have been squashed. The commit message for the squashed patch has been updated. Patches 4,5 and 6 of the v1 have been dropped from this patchset. A patch to fix the test scripts has been added. Bernard Iremonger (2): examples/ipsec-secgw: fix 1st pkt dropped for inline crypto examples/ipsec-secgw/test: fix inline test scripts examples/ipsec-secgw/ipsec-secgw.c | 244 +++++++------- examples/ipsec-secgw/ipsec.c | 456 ++++++++++++++------------- examples/ipsec-secgw/ipsec.h | 5 +- examples/ipsec-secgw/ipsec_process.c | 9 +- examples/ipsec-secgw/sa.c | 46 ++- examples/ipsec-secgw/test/trs_aesgcm_defs.sh | 10 - examples/ipsec-secgw/test/tun_aesgcm_defs.sh | 10 - 7 files changed, 405 insertions(+), 375 deletions(-) -- 2.7.4