From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mx.groups.io with SMTP id smtpd.web11.454.1641864398770444813 for ; Mon, 10 Jan 2022 17:26:39 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=Ta4XwPW+; spf=pass (domain: intel.com, ip: 134.134.136.100, mailfrom: w.sheng@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1641864398; x=1673400398; h=from:to:cc:subject:date:message-id; bh=GNjwz7QdArQrWkn9ioHHM1PUFvhS5tPE7e6HV1prvPk=; b=Ta4XwPW+MiOQi/RsUzJTol19Vf0GNZuJuZG2VD4mp5a25161TPolmV76 LLDIwugvVyiQ7i8Pz22brtUaXebuDVUJRWKAZJ4YGfQ7X3pkdFZGF0y2T MONNiSdZGneUZgFdepqFrPOHeg+lQSUFPYbC+9sYtS4fyJzmSDAgZ7ked AHe0exPPAgpYx8x6T8f2F0uGEn6+i1YwBEBeyKh48CeQfqLPQ8hWUsyAu GJrF2YsM0uhFqkHrYizVpfZVvexvbQsfr6kGBGO/o75PvRuhlkfDELE/x rueKB7DFUf3eVSW1pLe+W4y7BzY+nh2/UCllLRF97XVwefN4FOqmzwWAf w==; X-IronPort-AV: E=McAfee;i="6200,9189,10223"; a="306729041" X-IronPort-AV: E=Sophos;i="5.88,278,1635231600"; d="scan'208";a="306729041" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Jan 2022 17:26:38 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,278,1635231600"; d="scan'208";a="472281124" Received: from shwdesssddpdwei.ccr.corp.intel.com ([10.239.157.43]) by orsmga003.jf.intel.com with ESMTP; 10 Jan 2022 17:26:36 -0800 From: "Sheng Wei" To: devel@edk2.groups.io Cc: Ray Ni , Rangasai V Chaganty , Jenny Huang , Robert Kowalewski Subject: [PATCH] IntelSiliconPkg/IntelVTdDxe: Reduce Debug Level Date: Tue, 11 Jan 2022 09:26:33 +0800 Message-Id: <20220111012633.4260-1-w.sheng@intel.com> X-Mailer: git-send-email 2.16.2.windows.1 Reduce the debug level from DEBUG_INFO to DEBUG_VERBOSE in function SubmitQueuedInvalidationDescriptor (). REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3801 Cc: Ray Ni Cc: Rangasai V Chaganty Cc: Jenny Huang Cc: Robert Kowalewski Signed-off-by: Sheng Wei --- Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c b/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c index 1ce9c1c0..c88f462b 100644 --- a/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c +++ b/Silicon/Intel/IntelSiliconPkg/Feature/VTd/IntelVTdDxe/VtdReg.c @@ -238,7 +238,7 @@ SubmitQueuedInvalidationDescriptor ( QiDescLength = mVtdUnitInformation[VtdIndex].QiDescLength; BaseDesc = mVtdUnitInformation[VtdIndex].QiDesc; - DEBUG((DEBUG_INFO, "[%d] Submit QI Descriptor [0x%08x, 0x%08x] Free Head (%d)\n", VtdIndex, Desc->Low, Desc->High, mVtdUnitInformation[VtdIndex].QiFreeHead)); + DEBUG((DEBUG_VERBOSE, "[%d] Submit QI Descriptor [0x%08x, 0x%08x] Free Head (%d)\n", VtdIndex, Desc->Low, Desc->High, mVtdUnitInformation[VtdIndex].QiFreeHead)); BaseDesc[mVtdUnitInformation[VtdIndex].QiFreeHead].Low = Desc->Low; BaseDesc[mVtdUnitInformation[VtdIndex].QiFreeHead].High = Desc->High; -- 2.16.2.windows.1