From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by mx.groups.io with SMTP id smtpd.web11.1995.1615912957701160674 for ; Tue, 16 Mar 2021 09:42:37 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=dzBipm4p; spf=pass (domain: redhat.com, ip: 216.205.24.124, mailfrom: lersek@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1615912956; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=At4pXMit3rWrOrd/Fga6AElv2wyvgOo2NDxglj7Ol44=; b=dzBipm4pC3r8EBr7rAn/aSvius/yRb7Gk2G+e+EHE6UhOKTWk5WA1uc7lokk7vo6q4Xe0r N+OTJaYX3kHxxWCxYfwaDpDo8KFnKp4/9369xvfXo1HE79/bd5ck+tYpDwybY6u8lDono8 e/m55JEqxTilhCyZA+wG2z9ayif4x5w= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-203-9SuPSBFLN9WCXLm4JH16BQ-1; Tue, 16 Mar 2021 12:42:35 -0400 X-MC-Unique: 9SuPSBFLN9WCXLm4JH16BQ-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 94A441084C98; Tue, 16 Mar 2021 16:42:33 +0000 (UTC) Received: from lacos-laptop-7.usersys.redhat.com (ovpn-114-138.ams2.redhat.com [10.36.114.138]) by smtp.corp.redhat.com (Postfix) with ESMTP id 655FA5C1A1; Tue, 16 Mar 2021 16:42:32 +0000 (UTC) Subject: Re: [patch 24/28] UefiCpuPkg: Consume RegisterFilterLibNull instance To: Dandan Bi , devel@edk2.groups.io Cc: Eric Dong , Ray Ni , Rahul Kumar References: <20210315035844.32756-1-dandan.bi@intel.com> <20210315035844.32756-25-dandan.bi@intel.com> From: "Laszlo Ersek" Message-ID: <498fe87c-54c8-aa07-3ac9-b04f0a03fdc9@redhat.com> Date: Tue, 16 Mar 2021 17:42:31 +0100 MIME-Version: 1.0 In-Reply-To: <20210315035844.32756-25-dandan.bi@intel.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=lersek@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit On 03/15/21 04:58, Dandan Bi wrote: > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3246 > > Add RegisterFilterLibNull in dsc which will be consumed > by IoLib and BaseLib. > > Cc: Eric Dong > Cc: Ray Ni > Cc: Laszlo Ersek > Cc: Rahul Kumar > Signed-off-by: Dandan Bi > --- > UefiCpuPkg/UefiCpuPkg.dsc | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/UefiCpuPkg/UefiCpuPkg.dsc b/UefiCpuPkg/UefiCpuPkg.dsc > index 7db419471d..9e5dbb271f 100644 > --- a/UefiCpuPkg/UefiCpuPkg.dsc > +++ b/UefiCpuPkg/UefiCpuPkg.dsc > @@ -56,10 +56,11 @@ > SmmCpuFeaturesLib|UefiCpuPkg/Library/SmmCpuFeaturesLib/SmmCpuFeaturesLib.inf > PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf > PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf > TpmMeasurementLib|MdeModulePkg/Library/TpmMeasurementLibNull/TpmMeasurementLibNull.inf > VmgExitLib|UefiCpuPkg/Library/VmgExitLibNull/VmgExitLibNull.inf > + RegisterFilterLib|MdePkg/Library/RegisterFilterLibNull/RegisterFilterLibNull.inf > > [LibraryClasses.common.SEC] > PlatformSecLib|UefiCpuPkg/Library/PlatformSecLibNull/PlatformSecLibNull.inf > !if $(TOOL_CHAIN_TAG) == "XCODE5" > CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/Xcode5SecPeiCpuExceptionHandlerLib.inf > Reviewed-by: Laszlo Ersek