From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 146734555E for ; Mon, 8 Jul 2024 15:13:11 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0C79642707; Mon, 8 Jul 2024 15:13:11 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.9]) by mails.dpdk.org (Postfix) with ESMTP id 7F58140F35 for ; Mon, 8 Jul 2024 15:07:59 +0200 (CEST) X-CSE-ConnectionGUID: uhCXklwKTFC8MKEpOeaRZg== X-CSE-MsgGUID: jwaZk/udQumTmrIM8Oln4g== X-IronPort-AV: E=McAfee;i="6700,10204,11127"; a="28315154" X-IronPort-AV: E=Sophos;i="6.09,191,1716274800"; d="scan'208";a="28315154" Received: from fmviesa006.fm.intel.com ([10.60.135.146]) by fmvoesa103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Jul 2024 06:07:59 -0700 X-CSE-ConnectionGUID: /2YBu6TXQ0uOCFEkAbiUdA== X-CSE-MsgGUID: QVUjsZeZS6yj++AvzGgWcg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.09,191,1716274800"; d="scan'208";a="47268589" Received: from silpixa00400630.ir.intel.com ([10.237.213.150]) by fmviesa006.fm.intel.com with ESMTP; 08 Jul 2024 06:07:44 -0700 From: Joel Kavanagh To: brian.dooley@intel.com Cc: Joel Kavanagh , stable@dpdk.org Subject: [PATCH] crypto/aesni_mb: fix typo in error message Date: Mon, 8 Jul 2024 13:07:14 +0000 Message-Id: <20240708130714.587244-1-joel.f.kavanagh@gmail.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Mailman-Approved-At: Mon, 08 Jul 2024 15:13:10 +0200 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Fixes a typo in the log message for error allocation. Fixes: f9dfb59edbc ("crypto/aesni_mb: fix typo in error message") Cc: stable@dpdk.org Signed-off-by: Joel Kavanagh --- drivers/crypto/ipsec_mb/pmd_aesni_mb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/crypto/ipsec_mb/pmd_aesni_mb.c b/drivers/crypto/ipsec_mb/pmd_aesni_mb.c index 69a546697b..60dc2a2f0c 100644 --- a/drivers/crypto/ipsec_mb/pmd_aesni_mb.c +++ b/drivers/crypto/ipsec_mb/pmd_aesni_mb.c @@ -1500,7 +1500,7 @@ aesni_mb_digest_appended_in_src(struct rte_crypto_op *op, IMB_JOB *job, * * @return * - 0 on success, the IMB_JOB will be filled - * - -1 if invalid session or errors allocationg SGL linear buffer, + * - -1 if invalid session or errors allocating SGL linear buffer, * IMB_JOB will not be filled */ static inline int -- 2.34.1