From patchwork Fri May 20 05:54:20 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arkadiusz Kusztal X-Patchwork-Id: 111499 X-Patchwork-Delegate: gakhil@marvell.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 0BD94A0503; Fri, 20 May 2022 09:04:08 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id EF25642B8F; Fri, 20 May 2022 09:03:11 +0200 (CEST) Received: from mga06.intel.com (mga06b.intel.com [134.134.136.31]) by mails.dpdk.org (Postfix) with ESMTP id 1AFE642BBD for ; Fri, 20 May 2022 09:03:09 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1653030190; x=1684566190; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=tJLtAZPhCsItMMc/RN64xNYg4PwHzL1VmgRu0/XMrCY=; b=hwHu1lv0Hf7yueAvPjrKAcyS6qOwWmj/RZReRplFyAWwpbifN5b0CKii P+S1E6ibGaBYTlzBJ/ncHgwCR/lqA9Im2W7FhGIEsxBP007995JVlmHeU LWum4nkURsWGz8Rt17pJH1eV3NGSwl49UCrNPbs5567GjKVUJOxjRbIPP 6wrMFtT30GIWMvWi/d7bGeOI/POMwz47yBjTCgF8WASIiEumoc6DSWCwE XMfuzKxDBETv/MP/JAPvF0WxZ2EZETjMDelbUK1R3vS7UpiNdLg9a7OEY QTytqpNRK+gP5OgMo3uZ1hn8EAeuklA3/TB/TDy4Js26jdVm6SlMXYt27 w==; X-IronPort-AV: E=McAfee;i="6400,9594,10352"; a="333140335" X-IronPort-AV: E=Sophos;i="5.91,238,1647327600"; d="scan'208";a="333140335" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 May 2022 00:03:09 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.91,238,1647327600"; d="scan'208";a="599058291" Received: from silpixa00399302.ir.intel.com ([10.237.214.136]) by orsmga008.jf.intel.com with ESMTP; 20 May 2022 00:03:08 -0700 From: Arek Kusztal To: dev@dpdk.org Cc: gakhil@marvell.com, anoobj@marvell.com, roy.fan.zhang@intel.com, Arek Kusztal Subject: [PATCH 15/40] app/test-eventdev: remove asym crypto next xform Date: Fri, 20 May 2022 06:54:20 +0100 Message-Id: <20220520055445.40063-16-arkadiuszx.kusztal@intel.com> X-Mailer: git-send-email 2.13.6 In-Reply-To: <20220520055445.40063-1-arkadiuszx.kusztal@intel.com> References: <20220520055445.40063-1-arkadiuszx.kusztal@intel.com> X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org - removed asymmetric crypto xform next field. This commit reflects changes to the asymmetric crypto API. Signed-off-by: Arek Kusztal --- app/test-eventdev/test_perf_common.c | 1 - 1 file changed, 1 deletion(-) diff --git a/app/test-eventdev/test_perf_common.c b/app/test-eventdev/test_perf_common.c index f2da6fd74c..78150533a9 100644 --- a/app/test-eventdev/test_perf_common.c +++ b/app/test-eventdev/test_perf_common.c @@ -851,7 +851,6 @@ cryptodev_asym_sess_create(struct prod_data *p, struct test_perf *t) struct rte_crypto_asym_xform xform; void *sess; - xform.next = NULL; xform.xform_type = RTE_CRYPTO_ASYM_XFORM_MODEX; cap_idx.type = xform.xform_type; capability = rte_cryptodev_asym_capability_get(p->ca.cdev_id, &cap_idx);