From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by mx.groups.io with SMTP id smtpd.web10.32303.1611168403563375702 for ; Wed, 20 Jan 2021 10:46:44 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=DaDe2xpk; spf=pass (domain: redhat.com, ip: 63.128.21.124, mailfrom: lersek@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1611168402; 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=SRSWXL+2b+pGMDQI3fRZtA0RsV5o8SHH+Ru24z8hf2U=; b=DaDe2xpkCKU8P2xjnX5mTC0WTy9zv/5sMNKKnEUQOGzYxDLSzxFFad1N3GXklfTkHFCJiz MvxDay+afgSGr1YvmDX9xGmz1HDmN8DSLC+EXP9CiY6jTU36UexZtNdpk9OvPzlgpGAOCY Ga80dqCJoOF0RTguPDKBCbb6B0qR/tM= 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-384-FbHia1TjOx-E0f9Az-rzmw-1; Wed, 20 Jan 2021 13:46:39 -0500 X-MC-Unique: FbHia1TjOx-E0f9Az-rzmw-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id C2DBA8144E0; Wed, 20 Jan 2021 18:46:37 +0000 (UTC) Received: from lacos-laptop-7.usersys.redhat.com (ovpn-112-230.ams2.redhat.com [10.36.112.230]) by smtp.corp.redhat.com (Postfix) with ESMTP id D156A60C6D; Wed, 20 Jan 2021 18:46:35 +0000 (UTC) Subject: Re: [edk2-devel] [PATCH v2 0/4] UefiCpuPkg, OvmfPkg: do not allocate useless register tables for S3 resume To: devel@edk2.groups.io, star.zeng@intel.com Cc: Ard Biesheuvel , "Dong, Eric" , "Justen, Jordan L" , =?UTF-8?Q?Philippe_Mathieu-Daud=c3=a9?= , "Kumar, Rahul1" , "Ni, Ray" References: <20210119155440.2262-1-lersek@redhat.com> From: "Laszlo Ersek" Message-ID: <46b2032c-db9a-64de-6b4b-64e584f6c519@redhat.com> Date: Wed, 20 Jan 2021 19:46:34 +0100 MIME-Version: 1.0 In-Reply-To: X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 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: 8bit On 01/20/21 10:28, Zeng, Star wrote: > Series Reviewed-by: Star Zeng Series merged as commit range e843a21e23ea..339371ef78eb, via . Thanks! Laszlo > >> -----Original Message----- >> From: Laszlo Ersek >> Sent: Tuesday, January 19, 2021 11:55 PM >> To: edk2-devel-groups-io >> Cc: Ard Biesheuvel ; Dong, Eric >> ; Justen, Jordan L ; >> Philippe Mathieu-Daudé ; Kumar, Rahul1 >> ; Ni, Ray ; Zeng, Star >> >> Subject: [PATCH v2 0/4] UefiCpuPkg, OvmfPkg: do not allocate useless >> register tables for S3 resume >> >> Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=3159 >> Repo: https://pagure.io/lersek/edk2.git >> Branch: remove-cpu-reg-table-alloc-3159-v2 >> >> Updates in v2: >> >> - v1 patches have not received any updates, I've only picked up the >> feedback tags. >> >> - Patch v2 #1 -- for RegisterCpuFeaturesLib -- is new; authored by Ray >> and updated slightly by myself. Star and/or Eric should please approve >> this patch. >> >> v1 was posted at: >> >> [edk2-devel] [PATCH 0/3] UefiCpuPkg, OvmfPkg: do not allocate useless >> register tables for S3 resume >> >> Message-Id: <20210112191934.12459-1-lersek@redhat.com> >> https://edk2.groups.io/g/devel/message/70167 >> https://www.redhat.com/archives/edk2-devel-archive/2021- >> January/msg00652.html >> >> Cc: Ard Biesheuvel >> Cc: Eric Dong >> Cc: Jordan Justen >> Cc: Philippe Mathieu-Daudé >> Cc: Rahul Kumar >> Cc: Ray Ni >> Cc: Star Zeng >> >> Thanks >> Laszlo >> >> Laszlo Ersek (3): >> UefiCpuPkg/AcpiCpuData: update comments on register table fields >> UefiCpuPkg/CpuS3DataDxe: do not allocate useless register tables >> OvmfPkg/CpuS3DataDxe: do not allocate useless register tables >> >> Ray Ni (1): >> UefiCpuPkg/CpuFeature: Don't assume CpuS3DataDxe alloc RegisterTable >> >> OvmfPkg/CpuS3DataDxe/CpuS3Data.c | 70 +--------------- >> - >> OvmfPkg/CpuS3DataDxe/CpuS3DataDxe.inf | 1 - >> UefiCpuPkg/CpuS3DataDxe/CpuS3Data.c | 32 -------- >> UefiCpuPkg/Include/AcpiCpuData.h | 4 + >> UefiCpuPkg/Library/RegisterCpuFeaturesLib/RegisterCpuFeaturesLib.c | 80 >> +++++++++++--------- >> 5 files changed, 48 insertions(+), 139 deletions(-) >> >> >> base-commit: 83facfd184021874f95a6a34b2e47e0ebb34a762 >> -- >> 2.19.1.3.g30247aa5d201 > > > > > >