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 0365E455FE for ; Thu, 11 Jul 2024 16:43:44 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id F111E42EE9; Thu, 11 Jul 2024 16:43:43 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.19]) by mails.dpdk.org (Postfix) with ESMTP id 21F484065B; Thu, 11 Jul 2024 15:17:25 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1720703847; x=1752239847; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=Gl0rP9XTRXzm98fjXTlMinBFvO5YRKLMBq33hQ4dmyo=; b=LjkuYMDg80choqehatKSlHGTKnzi8d7bDWi9defMoza37p4bsnscm49l Qaf0u5kBIVywEmdjgnd8ZwMtsgNeXJQfWOD5tZkbVJ9ms99i56Ka20Hgr 4+ztbvJSkt0bZjKJ5QRzbMfo0pTNAwtE5iPaNmcAlqKpMfTEHz3OVVSuK lmGkhbcEJRyIn5++u1sD5tJ+Rtw6OzQaBnY4zpZ/2Hi88VIZoGTXRt6Wr 86CK6ocGjhI1Xn5hWFr1NU8sTS63CmPcjLUpclTAmR+nPSOJrn8LDMmY9 Pw7UqhS7dJy75JRQZFjJuGd8DRrfQhVVgcYJ9AdRUQSDVcxdlQa5kES5a A==; X-CSE-ConnectionGUID: u3ewR4ueS0evAB9mG+/HjA== X-CSE-MsgGUID: lI58UtiESTufXB5wFP+Cfw== X-IronPort-AV: E=McAfee;i="6700,10204,11130"; a="17787166" X-IronPort-AV: E=Sophos;i="6.09,200,1716274800"; d="scan'208";a="17787166" Received: from fmviesa003.fm.intel.com ([10.60.135.143]) by fmvoesa113.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 Jul 2024 06:15:07 -0700 X-CSE-ConnectionGUID: WxC0WETgQieYQlz1gAjy6g== X-CSE-MsgGUID: 1pGtMcDlTEuUFm/zs+ARwg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.09,200,1716274800"; d="scan'208";a="52862029" Received: from silpixa00400630.ir.intel.com ([10.237.213.150]) by fmviesa003.fm.intel.com with ESMTP; 11 Jul 2024 06:15:05 -0700 From: Joel Kavanagh To: Thomas Monjalon , Kai Ji , Pablo de Lara , Fan Zhang , Ciara Power Cc: dev@dpdk.org, gakhil@marvell.com, stable@dpdk.org, Joel Kavanagh Subject: [PATCH v1] crypto/aesni_mb: fix typo in error message Date: Thu, 11 Jul 2024 13:14:57 +0000 Message-Id: <20240711131457.959498-1-joel.kavanagh@intel.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Mailman-Approved-At: Thu, 11 Jul 2024 16:43:42 +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. Additionally, this commit updates the .mailmap file to ensure proper attribution and mapping of contributor email addresses. Fixes: f9dfb59 ("crypto/ipsec_mb: support remaining SGL") Cc: stable@dpdk.org Signed-off-by: Joel Kavanagh --- .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 f1e64286a1..5b6e30d76c 100644 --- a/.mailmap +++ b/.mailmap @@ -681,6 +681,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