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 85E22A0552; Thu, 20 Oct 2022 23:26:07 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9839B42BA7; Thu, 20 Oct 2022 23:24:50 +0200 (CEST) Received: from mga06.intel.com (mga06b.intel.com [134.134.136.31]) by mails.dpdk.org (Postfix) with ESMTP id 8F24D42B6D for ; Thu, 20 Oct 2022 23:24:39 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1666301079; x=1697837079; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=6nNg5WM09R30rM2SfZEIcuATgrDDlove3sYXISj/lgk=; b=fFcJNywZoqCuIpUZzxtUwAwPRWk4aocfrTDj5O5O6Qw9oMaoYFkHg+J4 8ZZPu6GCWlq4F3RIcv/f58v0cB13EDvnPI5lvDLcHl7BvmHiMO37NZNcz sVcTrPJVYswoen7mQaLI2az49Dk1zSlpRTbxb/CzYMtZG8SgInZZUwps4 HJ8lAmswSxGoexi9lvpWIM0qMpzLHSVh+JntKbetzIoyzsvnljDtJehTz 0JiEcKdqQGNki5ATCMzXKryyYlPxcYJYKx/96bROTdq+DO87tsqB3uY0u vKgyJ8/jDeWLVJ71vVtLZwhxTJze87HkPTYrbGsxXoFcxYZKJatB5nmBR g==; X-IronPort-AV: E=McAfee;i="6500,9779,10506"; a="368887487" X-IronPort-AV: E=Sophos;i="5.95,199,1661842800"; d="scan'208";a="368887487" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Oct 2022 14:24:36 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10506"; a="755396875" X-IronPort-AV: E=Sophos;i="5.95,199,1661842800"; d="scan'208";a="755396875" Received: from unknown (HELO csl-npg-qt0.la.intel.com) ([10.233.181.103]) by orsmga004.jf.intel.com with ESMTP; 20 Oct 2022 14:24:35 -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 v5 14/29] baseband/acc100: fix debug print for LDPC FCW Date: Thu, 20 Oct 2022 22:20:47 -0700 Message-Id: <20221021052102.107141-15-hernan.vargas@intel.com> X-Mailer: git-send-email 2.37.1 In-Reply-To: <20221021052102.107141-1-hernan.vargas@intel.com> References: <20221021052102.107141-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 ad815ed76a..2896bc0c5e 100644 --- a/drivers/baseband/acc/rte_acc100_pmd.c +++ b/drivers/baseband/acc/rte_acc100_pmd.c @@ -2757,7 +2757,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