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 A0AD5A0032; Mon, 13 Dec 2021 06:14:59 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2AB6640140; Mon, 13 Dec 2021 06:14:59 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id 78D6240042 for ; Mon, 13 Dec 2021 06:14:57 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1639372497; x=1670908497; h=from:to:cc:subject:date:message-id; bh=Jhi1KXBT97d3UzW4PThos2qanFL5vDijqIyDXeJUO9w=; b=WUA9x+oikCCp+IAmdzc31/qccezMSMlKnQxP9NiegNs2pGLZbIptkGAl 8ImhEVMhVARQvgkZ6jdqfW0wLJWCt/6MVhBPqFd7z2ICub4ve3vLlYBP7 om6X3gdUditcKOQCwnL3uny9ovLwqyyj9au/sq4jzKWGneR5Dpw+Qkk7a WCfkyil/B6H7BJK87khgbKIdliCj2rv6rIPxCrl/AJTyqrwiQ6pbuaRD4 54EOkls5J4Kjbc5LMZlmVMuhlrHD0za0tDFLQydn19rFG5d9f62MvxRJ8 nrlzk4EbFC70B+9Uouj57NPkWCIJ54v7wglqT0HM7N1vqPOGaZhJRHVT3 w==; X-IronPort-AV: E=McAfee;i="6200,9189,10196"; a="236194058" X-IronPort-AV: E=Sophos;i="5.88,201,1635231600"; d="scan'208";a="236194058" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Dec 2021 21:14:56 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,201,1635231600"; d="scan'208";a="681511180" Received: from dpdk-dipei.sh.intel.com ([10.67.111.91]) by orsmga005.jf.intel.com with ESMTP; 12 Dec 2021 21:14:54 -0800 From: Andy Pei To: dev@dpdk.org Cc: andy.pei@intel.com, chenbo.xia@intel.com, xiao.w.wang@intel.com Subject: [PATCH 1/3] vdpa/ifc: fix log info mismatch Date: Mon, 13 Dec 2021 12:29:06 +0800 Message-Id: <1639369746-103068-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. 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