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 A79CCA0032; Fri, 14 Jan 2022 08:22:15 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9D6C14276D; Fri, 14 Jan 2022 08:22:10 +0100 (CET) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id A729A40DDD; Fri, 14 Jan 2022 08:22:08 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642144928; x=1673680928; h=from:to:cc:subject:date:message-id; bh=/oQ9JtV8XtXg9Y7blFxE3fQcm+jmIIFYfAU2yUC3soI=; b=N+NmvUpAbm5Ah7yHqO2NyHMoA+PWc8malpzBo+wHtPccThHF6bjYXlRx Q4xz5neM1Jbm7seOgj9deg2Gd4SMQESUYlR519vEzGx2eqSamP2NjATyF zvlE3ONUvDFrMQcJ0QqnoIskS2+9utyM0AJa5zqaTeREzvIc6fJ/qVB+A Zjl28C+wOpLoFE9IoUtAWQeSh0b4DJ1byK3SVNCR6DLAQI94VHGz0dFPE I8K+yXdoW7Ym8WiZDPaRKUZ7+IOgsjDsrMobOOvmWZsB/0dS8LrXQk3iT Rc0ke44dvYuX1gmooahVNAtSPZikYNatcKZo5J7EDYbZezdfzid/OdB3Q A==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="307541817" X-IronPort-AV: E=Sophos;i="5.88,287,1635231600"; d="scan'208";a="307541817" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Jan 2022 23:22:08 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,287,1635231600"; d="scan'208";a="670771758" Received: from dpdk-dipei.sh.intel.com ([10.67.111.91]) by fmsmga001.fm.intel.com with ESMTP; 13 Jan 2022 23:22:06 -0800 From: Andy Pei To: dev@dpdk.org Cc: chenbo.xia@intel.com, stable@dpdk.org Subject: [PATCH] vdpa/ifc: fix log info mismatch Date: Fri, 14 Jan 2022 15:18:04 +0800 Message-Id: <1642144684-200938-1-git-send-email-andy.pei@intel.com> X-Mailer: git-send-email 1.8.3.1 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 Fix log info mismatch. Fixes: a3f8150eac6d ("net/ifcvf: add ifcvf vDPA driver") Cc: stable@dpdk.org Signed-off-by: Andy Pei --- drivers/vdpa/ifc/base/ifcvf.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/drivers/vdpa/ifc/base/ifcvf.c b/drivers/vdpa/ifc/base/ifcvf.c index 721cb1d..d10c1fd 100644 --- a/drivers/vdpa/ifc/base/ifcvf.c +++ b/drivers/vdpa/ifc/base/ifcvf.c @@ -94,12 +94,14 @@ return -1; } - DEBUGOUT("capability mapping:\ncommon cfg: %p\n" - "notify base: %p\nisr cfg: %p\ndevice cfg: %p\n" - "multiplier: %u\n", - hw->common_cfg, hw->dev_cfg, - hw->isr, hw->notify_base, - hw->notify_off_multiplier); + DEBUGOUT("capability mapping:\n" + "common cfg: %p\n" + "notify base: %p\n" + "isr cfg: %p\n" + "device cfg: %p\n" + "multiplier: %u\n", + hw->common_cfg, hw->notify_base, hw->isr, hw->dev_cfg, + hw->notify_off_multiplier); return 0; } -- 1.8.3.1