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 915A845645; 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 8660D42F0B; Thu, 18 Jul 2024 15:50:42 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.7]) by mails.dpdk.org (Postfix) with ESMTP id D13004064A; Wed, 17 Jul 2024 17:49:37 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1721231378; x=1752767378; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=NT7BY7Qo7Bcw/blwF6LKchtn9ak3vY3HZaBo7ngR3t4=; b=fCRg7sWpq+6GjbXfSbQTGpwcpUeeIYrS0M6rKWKdEwHFXFeFB2zuJ6QM DVRQH1WhcYA0uyo9bIRQAdpiYKLY+7gX9M8CJ2N5xhnFZ7bjHbRFc5FZI 655jBhHs5/rmcWp4LVY4NIsMG2NNDc9+dr7Cq4uU67KQv8Tc6/cnHX+VJ S/sTQJp4rMwhifcmU5k+iNpqMBtCOCQAI5CmaRh+1pc4XA51r1sNFJElp BlQhoZzgYeEnO2bcc+shoaVbYO294k6vJy2mnoaEVnZf6ylA9UovG23Ii c3CWj/Pq2Aes4KyDAoMsiWvGV8pHjJGu0zbqDSdk3W2aaH48hSOivdLnM w==; X-CSE-ConnectionGUID: +YZTEyYjRZKktqnof2EZUA== X-CSE-MsgGUID: AyU22znqTxuglLjxMfn4mQ== X-IronPort-AV: E=McAfee;i="6700,10204,11136"; a="44167416" X-IronPort-AV: E=Sophos;i="6.09,215,1716274800"; d="scan'208";a="44167416" 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:38 -0700 X-CSE-ConnectionGUID: LYp0jTHQSOaRtxi0aHEOWQ== X-CSE-MsgGUID: DgLIV30/ThGkUjxN9NMLtg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.09,215,1716274800"; d="scan'208";a="50322915" Received: from silpixa00400630.ir.intel.com ([10.237.213.150]) by orviesa010.jf.intel.com with ESMTP; 17 Jul 2024 08:49:36 -0700 From: Joel Kavanagh To: Kai Ji , Fan Zhang Cc: dev@dpdk.org, stable@dpdk.org, Joel Kavanagh Subject: [PATCH v2 3/4] crypto/qat: fix typo in log message Date: Wed, 17 Jul 2024 15:49:07 +0000 Message-Id: <20240717154908.2281023-4-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-Transfer-Encoding: 8bit X-Mailman-Approved-At: Thu, 18 Jul 2024 15:50:37 +0200 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 This patch fixes a typo in the log message for rte_security support. The typo incorrectly spelled 'enabled' as 'ensabled' in the log message indicating that rte_security support is enabled. Fixes: fb3b9f492205 ("crypto/qat: rework burst data path") Cc: stable@dpdk.org Signed-off-by: Joel Kavanagh --- drivers/crypto/qat/qat_sym.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/crypto/qat/qat_sym.c b/drivers/crypto/qat/qat_sym.c index b41d1b1def..d979ae6489 100644 --- a/drivers/crypto/qat/qat_sym.c +++ b/drivers/crypto/qat/qat_sym.c @@ -291,7 +291,7 @@ qat_sym_dev_create(struct qat_pci_device *qat_pci_dev) } cryptodev->feature_flags |= RTE_CRYPTODEV_FF_SECURITY; - QAT_LOG(INFO, "Device %s rte_security support ensabled", name); + QAT_LOG(INFO, "Device %s rte_security support enabled", name); } else { QAT_LOG(INFO, "Device %s rte_security support disabled", name); } -- 2.34.1