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 4D18545645 for ; Thu, 18 Jul 2024 15:50:59 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9EA6D42F43; Thu, 18 Jul 2024 15:50:58 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.7]) by mails.dpdk.org (Postfix) with ESMTP id 81D2840272; Wed, 17 Jul 2024 17:49:29 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1721231370; x=1752767370; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=qjTdsoAaRtjIUQdZZUDcvwUy5rtqy3FRp/oKaSQ5w1Q=; b=mD1aTbDY/O+BoZjEe+P4baT9G36b0GfSm0KZAc5jVPyNsA4FXkVOLBll /b4LK+POakcGJkh3whWDEtmZvjnOadq9Maw3Q1Pl63csbkxfAhtWZw1Yf KNyADp8ED1iTcHiojp11oiDKaP1S1FAnt65A1IAQMbTAtG1iHCQqOicXZ DY1ValYAlkSlF1LRy7reG8xz0Q5vf3pyVS5XxJ5Eu+VLa+jwD3PJKkRhN mp41KjLLO+sFueykT2yhIJjjxFOICy/GDtua+/tVFQTH2qrtIpElpTQJ4 UxpZ6nCspI3jH8hCE9FJuZPE2TCc+SHIw+9kBollOWQerQwW+Lc62DjA6 g==; X-CSE-ConnectionGUID: UMOKi5UOS0OXLB7lA4frnw== X-CSE-MsgGUID: PJ+3U9j1Qy61g8uWgGZsog== X-IronPort-AV: E=McAfee;i="6700,10204,11136"; a="44167384" X-IronPort-AV: E=Sophos;i="6.09,215,1716274800"; d="scan'208";a="44167384" Received: from orviesa010.jf.intel.com ([10.64.159.150]) by fmvoesa101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jul 2024 08:49:29 -0700 X-CSE-ConnectionGUID: bjJd2HlfRFm6Y5PZm64tKQ== X-CSE-MsgGUID: NLwn0xHMT16NxlBGEYye1Q== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.09,215,1716274800"; d="scan'208";a="50322834" Received: from silpixa00400630.ir.intel.com ([10.237.213.150]) by orviesa010.jf.intel.com with ESMTP; 17 Jul 2024 08:49:26 -0700 From: Joel Kavanagh To: Thomas Monjalon , Kai Ji , Pablo de Lara , Ciara Power , Fan Zhang Cc: dev@dpdk.org, stable@dpdk.org, Joel Kavanagh , Brian Dooley Subject: [PATCH v2 1/4] crypto/aesni_mb: fix typo in error message Date: Wed, 17 Jul 2024 15:49:05 +0000 Message-Id: <20240717154908.2281023-2-joel.kavanagh@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240717154908.2281023-1-joel.kavanagh@intel.com> References: <20240711131457.959498-1-joel.kavanagh@intel.com> <20240717154908.2281023-1-joel.kavanagh@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Mailman-Approved-At: Thu, 18 Jul 2024 15:50:56 +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 This patch fixes a typo in the log message for error allocation. The typo incorrectly spelled 'allocating' as 'allocationg' in the log message for error allocation. Fixes: f9dfb59edbcc ("crypto/ipsec_mb: support remaining SGL") Cc: stable@dpdk.org Signed-off-by: Joel Kavanagh Acked-by: Brian Dooley --- v2: Added more typo fixes to patchset --- .mailmap | 1 + drivers/crypto/ipsec_mb/pmd_aesni_mb.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.mailmap b/.mailmap index 9d0e1380cf..6822c54376 100644 --- a/.mailmap +++ b/.mailmap @@ -678,6 +678,7 @@ Jin Yu Jiri Slaby Job Abraham Jochen Behrens +Joel Kavanagh Joey Xing Johan Faltstrom Johan Källström diff --git a/drivers/crypto/ipsec_mb/pmd_aesni_mb.c b/drivers/crypto/ipsec_mb/pmd_aesni_mb.c index d74946c180..ef4228bd38 100644 --- a/drivers/crypto/ipsec_mb/pmd_aesni_mb.c +++ b/drivers/crypto/ipsec_mb/pmd_aesni_mb.c @@ -1534,7 +1534,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