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 1A9D445646 for ; Thu, 18 Jul 2024 15:51:00 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id DD15B42F2B; 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 CC9D74064A; Wed, 17 Jul 2024 17:49:34 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1721231375; x=1752767375; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Hb6AQeAnr2X1DW1LhR0uGWQlF8DehCUKitlOMTpyvrM=; b=eueq4kkl+DXadWPN44ivFEu1wnw9mfppUX4eL++DIIdbvaCAAjy7U7R+ uPFmrA+4Oe8it8PsK4H+6KpYxmJtu710dGnVGQWTjMCoTTWMUpCAw1nde F+1I8KR+spKyhmcPDnou68/Om75obLPzUp9V4srjMqZnGirKfANFAJjHu oSIWl32vh/tKMdEueeoCXTHiW/Ev3n6Rms9p1hybrZFpQBgNqHQ9//2F/ EZGGxUBtrLGCCAy2xqH1V22EKjXzSa/mqj1pR0rTh6Q6txLSY2Ff1+ZMZ YN3wjniCsWfhQMuSTIOj+slTPHsAyjW/MW0WIZFFtMrpRlGUHG/vGOXY5 A==; X-CSE-ConnectionGUID: tPaIPEdWRwmj8LJZkNBFRA== X-CSE-MsgGUID: is7Un0BxT2KnPk/k9ejSgw== X-IronPort-AV: E=McAfee;i="6700,10204,11136"; a="44167398" X-IronPort-AV: E=Sophos;i="6.09,215,1716274800"; d="scan'208";a="44167398" 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:35 -0700 X-CSE-ConnectionGUID: ICnFFxjSR8GwXmCYeMDAhg== X-CSE-MsgGUID: T0eyvr1PQz6GOhmW8fwf+g== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.09,215,1716274800"; d="scan'208";a="50322886" Received: from silpixa00400630.ir.intel.com ([10.237.213.150]) by orviesa010.jf.intel.com with ESMTP; 17 Jul 2024 08:49:33 -0700 From: Joel Kavanagh To: Akhil Goyal , Fan Zhang , Fiona Trahe , Arkadiusz Kusztal , Nipun Gupta Cc: dev@dpdk.org, stable@dpdk.org, Joel Kavanagh Subject: [PATCH v2 2/4] app/test: fix typo in error message allocation Date: Wed, 17 Jul 2024 15:49:06 +0000 Message-Id: <20240717154908.2281023-3-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: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 `test_cryptodev.c` file where "out-op" was incorrectly used instead of "out-of-place" on three separate occassions. Fixes: f3dbf94be60c ("app/test: check SGL on QAT") Fixes: 43220096d66a ("test/crypto: add PDCP cases for scatter gather") Cc: stable@dpdk.org Signed-off-by: Joel Kavanagh --- app/test/test_cryptodev.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c index 6042db36a4..c846b26ed1 100644 --- a/app/test/test_cryptodev.c +++ b/app/test/test_cryptodev.c @@ -9428,7 +9428,7 @@ static int test_pdcp_proto(int i, int oop, enum rte_crypto_cipher_operation opc, /* Out of place support */ if (oop) { /* - * For out-op-place we need to alloc another mbuf + * For out-of-place we need to alloc another mbuf */ ut_params->obuf = rte_pktmbuf_alloc(ts_params->mbuf_pool); rte_pktmbuf_append(ut_params->obuf, output_vec_len); @@ -9637,7 +9637,7 @@ test_pdcp_proto_SGL(int i, int oop, /* Out of place support */ if (oop) { /* - * For out-op-place we need to alloc another mbuf + * For out-of-place we need to alloc another mbuf */ ut_params->obuf = rte_pktmbuf_alloc(ts_params->mbuf_pool); rte_pktmbuf_append(ut_params->obuf, frag_size_oop); @@ -16831,7 +16831,7 @@ test_authenticated_encryption_SGL(const struct aead_test_data *tdata, } /* - * For out-op-place we need to alloc another mbuf + * For out-of-place we need to alloc another mbuf */ if (oop) { ut_params->obuf = rte_pktmbuf_alloc(ts_params->mbuf_pool); -- 2.34.1