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 14648A0560; Tue, 18 Oct 2022 18:44:20 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 392AF42BAB; Tue, 18 Oct 2022 18:43:05 +0200 (CEST) Received: from mga06.intel.com (mga06b.intel.com [134.134.136.31]) by mails.dpdk.org (Postfix) with ESMTP id 12F8841181 for ; Tue, 18 Oct 2022 18:42:54 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1666111375; x=1697647375; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=QLxzpdwherFogAVJIj+DuJN0YnjpJpTlRQ4Gwrxi7zE=; b=C52ncvHqvxKNH/wYRkse3ClcWyhUXGzyoby5V5n5BuaEeXyLspU0UqUk D+oK5q+sm+pG26tw7PXyYnIj0r0V/tVs8OvodXHpyOw6Q9GVHsZL87LLL PVPCdcbLmlIFEYon1KDJyt6iCveqtG8X/W7oFMiphicdxC4KxLxGFxGh9 vXrXF8vfwJkzuJsrBnKY7Srk4bQIn9G6D2IORlNXW08Ml58kLsM8ovTfB BO7Y3Px8/3nyAYbP029c+W68/PeO1cV22fmdF3I+5dsGYScxlb+dmFa5o 44zji4laPEoiUCthL35DPrxUsTMUyeRTINUsi4Jnyh7hjn8YxySQKH3ww g==; X-IronPort-AV: E=McAfee;i="6500,9779,10504"; a="368192081" X-IronPort-AV: E=Sophos;i="5.95,193,1661842800"; d="scan'208";a="368192081" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Oct 2022 09:42:54 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10504"; a="803836075" X-IronPort-AV: E=Sophos;i="5.95,193,1661842800"; d="scan'208";a="803836075" Received: from unknown (HELO csl-npg-qt0.la.intel.com) ([10.233.181.103]) by orsmga005.jf.intel.com with ESMTP; 18 Oct 2022 09:42:54 -0700 From: Hernan Vargas To: dev@dpdk.org, gakhil@marvell.com, trix@redhat.com, maxime.coquelin@redhat.com Cc: nicolas.chautru@intel.com, qi.z.zhang@intel.com, Hernan Vargas Subject: [PATCH v4 14/30] baseband/acc100: fix debug print for LDPC FCW Date: Tue, 18 Oct 2022 17:39:02 -0700 Message-Id: <20221019003918.257506-15-hernan.vargas@intel.com> X-Mailer: git-send-email 2.37.1 In-Reply-To: <20221019003918.257506-1-hernan.vargas@intel.com> References: <20221019003918.257506-1-hernan.vargas@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 Print full size of FCW LDPC structure on debug messages. This is just a cosmetic fix, no need to fix on previous code base. Signed-off-by: Hernan Vargas Reviewed-by: Maxime Coquelin --- drivers/baseband/acc/rte_acc100_pmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/baseband/acc/rte_acc100_pmd.c b/drivers/baseband/acc/rte_acc100_pmd.c index 13eefaad80..fc2fbe5511 100644 --- a/drivers/baseband/acc/rte_acc100_pmd.c +++ b/drivers/baseband/acc/rte_acc100_pmd.c @@ -2756,7 +2756,7 @@ enqueue_ldpc_dec_one_op_cb(struct acc_queue *q, struct rte_bbdev_dec_op *op, #ifdef RTE_LIBRTE_BBDEV_DEBUG rte_memdump(stderr, "FCW", &desc->req.fcw_ld, - sizeof(desc->req.fcw_ld) - 8); + sizeof(desc->req.fcw_ld)); rte_memdump(stderr, "Req Desc.", desc, sizeof(*desc)); #endif -- 2.37.1