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 9B2C7A0032; Mon, 13 Dec 2021 08:22:01 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8708F41140; Mon, 13 Dec 2021 08:22:01 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id 26DE9406A2 for ; Mon, 13 Dec 2021 08:21:59 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1639380120; x=1670916120; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=sYUCP/iaFbkfCCXk1XFkVWa44ypmqJ1okzTvrCgu0+I=; b=Op9Qpmu7TBlfJDDcePbVwmEXPjXchXbNWZ701S3K3cZYUC4YfldzpCor 3SqUGy3O01Hkjtv47Gkya2a+HzLb0DG5K1XhF61NF617mjIJBSyWM9I48 Si5s013C1F1PjNn51s1jBm7IP3B/igvOn0nZCzp2sV7khp38CmWRpS0l3 Dk2QOcGjjIL30n+rdf4yw5h0V/yUyWoacWCwNkIBnPUahfmwvlkfft+ga WtxaxI6ZChe4MPE2t2GVLnTIBbVYqxNywmYInnXAw9F7/5JqhyRRk1BPb JxIBldz6qoMchJhF0QUjFyJvAIiM3gROJBr9C3gJO/tiouJCY6uXsaivg w==; X-IronPort-AV: E=McAfee;i="6200,9189,10196"; a="236207317" X-IronPort-AV: E=Sophos;i="5.88,201,1635231600"; d="scan'208";a="236207317" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Dec 2021 23:21:59 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,201,1635231600"; d="scan'208";a="517637998" Received: from dpdk-dipei.sh.intel.com ([10.67.111.91]) by orsmga008.jf.intel.com with ESMTP; 12 Dec 2021 23:21:57 -0800 From: Andy Pei To: dev@dpdk.org Cc: chenbo.xia@intel.com, xiao.w.wang@intel.com Subject: [PATCH v2] vdpa/ifc: fix log info mismatch Date: Mon, 13 Dec 2021 14:36:07 +0800 Message-Id: <1639377367-123308-1-git-send-email-andy.pei@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1639369746-103068-1-git-send-email-andy.pei@intel.com> References: <1639369746-103068-1-git-send-email-andy.pei@intel.com> 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: xiao.w.wang@intel.com 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