From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <konstantin.ananyev@intel.com>
Received: from mga05.intel.com (mga05.intel.com [192.55.52.43])
 by dpdk.org (Postfix) with ESMTP id 0E4A32C28
 for <dev@dpdk.org>; Fri, 29 Mar 2019 11:27:40 +0100 (CET)
X-Amp-Result: SKIPPED(no attachment in message)
X-Amp-File-Uploaded: False
Received: from orsmga006.jf.intel.com ([10.7.209.51])
 by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;
 29 Mar 2019 03:27:39 -0700
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.60,284,1549958400"; d="scan'208";a="131234627"
Received: from sivswdev08.ir.intel.com ([10.237.217.47])
 by orsmga006.jf.intel.com with ESMTP; 29 Mar 2019 03:27:38 -0700
From: Konstantin Ananyev <konstantin.ananyev@intel.com>
To: dev@dpdk.org
Cc: akhil.goyal@nxp.com, olivier.matz@6wind.com,
 Konstantin Ananyev <konstantin.ananyev@intel.com>
Date: Fri, 29 Mar 2019 10:27:17 +0000
Message-Id: <20190329102726.27716-1-konstantin.ananyev@intel.com>
X-Mailer: git-send-email 2.18.0
In-Reply-To: <20190326154320.29913-1-konstantin.ananyev@intel.com>
References: <20190326154320.29913-1-konstantin.ananyev@intel.com>
Subject: [dpdk-dev] [PATCH v4 0/9] Few small improvements for ipsec library
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Fri, 29 Mar 2019 10:27:41 -0000

V4 -> V3
 Address Akhil comments:
  - function/paramers names
  - add ipsec lib into shared libraries list

v3 -> v2
 Address comments:
  - make rte_mbuf_tx_offload() always inline
  - rename OL[2,3]_LEN to OUTL[2,3]_LEN for better naming
 Add 'unused' parameter into rte_mbuf_tx_offload() for consistency
 Some code de-duplication
 Rebase against the latest next-crypto

v1 -> v2
 Add patch to improve a bit esp inbound pkt_process code

The first patch in this series introduces new function to
set raw value for rte_mbuf tx_offload.
Remaining ones are cleanups and small performance improvements
(on IA ~3-6% depending on the test-case) for ipsec library.

Konstantin Ananyev (9):
  mbuf: new function to generate raw Tx offload value
  ipsec: add Tx offload template into SA
  ipsec: change the order in filling crypto op
  ipsec: change the way unprocessed mbufs are accounted
  ipsec: move inbound and outbound code into different files
  ipsec: reorder packet check for esp inbound
  ipsec: reorder packet process for esp inbound
  ipsec: de-duplicate crypto op prepare code-path
  doc: add ipsec lib into shared libraries list

 doc/guides/rel_notes/release_19_05.rst |    1 +
 lib/librte_ipsec/Makefile              |    2 +
 lib/librte_ipsec/crypto.h              |   17 +
 lib/librte_ipsec/esp_inb.c             |  547 ++++++++++++
 lib/librte_ipsec/esp_outb.c            |  580 +++++++++++++
 lib/librte_ipsec/ipsec_sqn.h           |   34 -
 lib/librte_ipsec/meson.build           |    2 +-
 lib/librte_ipsec/misc.h                |   41 +
 lib/librte_ipsec/sa.c                  | 1072 ++----------------------
 lib/librte_ipsec/sa.h                  |   45 +
 lib/librte_mbuf/rte_mbuf.h             |   79 +-
 11 files changed, 1365 insertions(+), 1055 deletions(-)
 create mode 100644 lib/librte_ipsec/esp_inb.c
 create mode 100644 lib/librte_ipsec/esp_outb.c
 create mode 100644 lib/librte_ipsec/misc.h

-- 
2.17.1

From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <dev-bounces@dpdk.org>
Received: from dpdk.org (dpdk.org [92.243.14.124])
	by dpdk.space (Postfix) with ESMTP id 55E2DA05D3
	for <public@inbox.dpdk.org>; Fri, 29 Mar 2019 11:27:44 +0100 (CET)
Received: from [92.243.14.124] (localhost [127.0.0.1])
	by dpdk.org (Postfix) with ESMTP id B832A3256;
	Fri, 29 Mar 2019 11:27:42 +0100 (CET)
Received: from mga05.intel.com (mga05.intel.com [192.55.52.43])
 by dpdk.org (Postfix) with ESMTP id 0E4A32C28
 for <dev@dpdk.org>; Fri, 29 Mar 2019 11:27:40 +0100 (CET)
X-Amp-Result: SKIPPED(no attachment in message)
X-Amp-File-Uploaded: False
Received: from orsmga006.jf.intel.com ([10.7.209.51])
 by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;
 29 Mar 2019 03:27:39 -0700
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.60,284,1549958400"; d="scan'208";a="131234627"
Received: from sivswdev08.ir.intel.com ([10.237.217.47])
 by orsmga006.jf.intel.com with ESMTP; 29 Mar 2019 03:27:38 -0700
From: Konstantin Ananyev <konstantin.ananyev@intel.com>
To: dev@dpdk.org
Cc: akhil.goyal@nxp.com, olivier.matz@6wind.com,
 Konstantin Ananyev <konstantin.ananyev@intel.com>
Date: Fri, 29 Mar 2019 10:27:17 +0000
Message-Id: <20190329102726.27716-1-konstantin.ananyev@intel.com>
X-Mailer: git-send-email 2.18.0
In-Reply-To: <20190326154320.29913-1-konstantin.ananyev@intel.com>
References: <20190326154320.29913-1-konstantin.ananyev@intel.com>
Subject: [dpdk-dev] [PATCH v4 0/9] Few small improvements for ipsec library
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
Errors-To: dev-bounces@dpdk.org
Sender: "dev" <dev-bounces@dpdk.org>
Content-Type: text/plain; charset="UTF-8"
Message-ID: <20190329102717.jC2RoRwUykg37G5dGrRjvsDAiGE0PscTy_O_oRmIoS4@z>

V4 -> V3
 Address Akhil comments:
  - function/paramers names
  - add ipsec lib into shared libraries list

v3 -> v2
 Address comments:
  - make rte_mbuf_tx_offload() always inline
  - rename OL[2,3]_LEN to OUTL[2,3]_LEN for better naming
 Add 'unused' parameter into rte_mbuf_tx_offload() for consistency
 Some code de-duplication
 Rebase against the latest next-crypto

v1 -> v2
 Add patch to improve a bit esp inbound pkt_process code

The first patch in this series introduces new function to
set raw value for rte_mbuf tx_offload.
Remaining ones are cleanups and small performance improvements
(on IA ~3-6% depending on the test-case) for ipsec library.

Konstantin Ananyev (9):
  mbuf: new function to generate raw Tx offload value
  ipsec: add Tx offload template into SA
  ipsec: change the order in filling crypto op
  ipsec: change the way unprocessed mbufs are accounted
  ipsec: move inbound and outbound code into different files
  ipsec: reorder packet check for esp inbound
  ipsec: reorder packet process for esp inbound
  ipsec: de-duplicate crypto op prepare code-path
  doc: add ipsec lib into shared libraries list

 doc/guides/rel_notes/release_19_05.rst |    1 +
 lib/librte_ipsec/Makefile              |    2 +
 lib/librte_ipsec/crypto.h              |   17 +
 lib/librte_ipsec/esp_inb.c             |  547 ++++++++++++
 lib/librte_ipsec/esp_outb.c            |  580 +++++++++++++
 lib/librte_ipsec/ipsec_sqn.h           |   34 -
 lib/librte_ipsec/meson.build           |    2 +-
 lib/librte_ipsec/misc.h                |   41 +
 lib/librte_ipsec/sa.c                  | 1072 ++----------------------
 lib/librte_ipsec/sa.h                  |   45 +
 lib/librte_mbuf/rte_mbuf.h             |   79 +-
 11 files changed, 1365 insertions(+), 1055 deletions(-)
 create mode 100644 lib/librte_ipsec/esp_inb.c
 create mode 100644 lib/librte_ipsec/esp_outb.c
 create mode 100644 lib/librte_ipsec/misc.h

-- 
2.17.1