[edk2-devel] [PATCH v2 0/3] OvmfPkg: distinguish boot CPU count from possible CPU count

Laszlo Ersek posted 3 patches 4 years, 6 months ago
Failed in applying to current master (apply log)
OvmfPkg/Include/IndustryStandard/I440FxPiix4.h    |   5 +
OvmfPkg/Include/IndustryStandard/Q35MchIch9.h     |   2 +
OvmfPkg/Include/IndustryStandard/QemuCpuHotplug.h |  43 +++++
OvmfPkg/OvmfPkgIa32.dsc                           |   2 +-
OvmfPkg/OvmfPkgIa32X64.dsc                        |   2 +-
OvmfPkg/OvmfPkgX64.dsc                            |   2 +-
OvmfPkg/OvmfXen.dsc                               |   4 -
OvmfPkg/PlatformPei/Platform.c                    | 172 +++++++++++++++++---
OvmfPkg/PlatformPei/PlatformPei.inf               |   2 +-
9 files changed, 201 insertions(+), 33 deletions(-)
create mode 100644 OvmfPkg/Include/IndustryStandard/QemuCpuHotplug.h
[edk2-devel] [PATCH v2 0/3] OvmfPkg: distinguish boot CPU count from possible CPU count
Posted by Laszlo Ersek 4 years, 6 months ago
Repo:   https://github.com/lersek/edk2.git
Branch: max_cpus_bz_1515_v2
Ref:    https://bugzilla.tianocore.org/show_bug.cgi?id=1515

Version 1 was:

  [edk2-devel] [PATCH 0/4]
  UefiCpuPkg, OvmfPkg: separate PCDs for boot CPU count vs. max CPU count

  http://mid.mail-archive.com/20191008112714.6215-1-lersek@redhat.com
  https://edk2.groups.io/g/devel/message/48562

Since then, patch#1 of v1 has been rewritten and pushed as commit range
a7e2d20193e8..778832bcad33.

This v2 posting reworks the rest (patches #2 through #4) of the v1
series. Changes are listed per patch, in the notes sections.

Cc: Anthony Perard <anthony.perard@citrix.com>
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: Igor Mammedov <imammedo@redhat.com>
Cc: Jordan Justen <jordan.l.justen@intel.com>
Cc: Julien Grall <julien.grall@arm.com>

Thanks
Laszlo

Laszlo Ersek (3):
  OvmfPkg/OvmfXen.dsc: remove PcdCpu* dynamic defaults
  OvmfPkg/IndustryStandard: define macros for QEMU's CPU hotplug
    registers
  OvmfPkg/PlatformPei: rewrite MaxCpuCountInitialization() for CPU
    hotplug

 OvmfPkg/Include/IndustryStandard/I440FxPiix4.h    |   5 +
 OvmfPkg/Include/IndustryStandard/Q35MchIch9.h     |   2 +
 OvmfPkg/Include/IndustryStandard/QemuCpuHotplug.h |  43 +++++
 OvmfPkg/OvmfPkgIa32.dsc                           |   2 +-
 OvmfPkg/OvmfPkgIa32X64.dsc                        |   2 +-
 OvmfPkg/OvmfPkgX64.dsc                            |   2 +-
 OvmfPkg/OvmfXen.dsc                               |   4 -
 OvmfPkg/PlatformPei/Platform.c                    | 172 +++++++++++++++++---
 OvmfPkg/PlatformPei/PlatformPei.inf               |   2 +-
 9 files changed, 201 insertions(+), 33 deletions(-)
 create mode 100644 OvmfPkg/Include/IndustryStandard/QemuCpuHotplug.h

-- 
2.19.1.3.g30247aa5d201


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.

View/Reply Online (#49364): https://edk2.groups.io/g/devel/message/49364
Mute This Topic: https://groups.io/mt/36464999/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-

Re: [edk2-devel] [PATCH v2 0/3] OvmfPkg: distinguish boot CPU count from possible CPU count
Posted by Ard Biesheuvel 4 years, 6 months ago
On Wed, 23 Oct 2019 at 00:16, Laszlo Ersek <lersek@redhat.com> wrote:
>
> Repo:   https://github.com/lersek/edk2.git
> Branch: max_cpus_bz_1515_v2
> Ref:    https://bugzilla.tianocore.org/show_bug.cgi?id=1515
>
> Version 1 was:
>
>   [edk2-devel] [PATCH 0/4]
>   UefiCpuPkg, OvmfPkg: separate PCDs for boot CPU count vs. max CPU count
>
>   http://mid.mail-archive.com/20191008112714.6215-1-lersek@redhat.com
>   https://edk2.groups.io/g/devel/message/48562
>
> Since then, patch#1 of v1 has been rewritten and pushed as commit range
> a7e2d20193e8..778832bcad33.
>
> This v2 posting reworks the rest (patches #2 through #4) of the v1
> series. Changes are listed per patch, in the notes sections.
>
> Cc: Anthony Perard <anthony.perard@citrix.com>
> Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
> Cc: Igor Mammedov <imammedo@redhat.com>
> Cc: Jordan Justen <jordan.l.justen@intel.com>
> Cc: Julien Grall <julien.grall@arm.com>
>
> Thanks
> Laszlo
>
> Laszlo Ersek (3):
>   OvmfPkg/OvmfXen.dsc: remove PcdCpu* dynamic defaults
>   OvmfPkg/IndustryStandard: define macros for QEMU's CPU hotplug
>     registers
>   OvmfPkg/PlatformPei: rewrite MaxCpuCountInitialization() for CPU
>     hotplug
>

For patches #2 and #3

Acked-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>


>  OvmfPkg/Include/IndustryStandard/I440FxPiix4.h    |   5 +
>  OvmfPkg/Include/IndustryStandard/Q35MchIch9.h     |   2 +
>  OvmfPkg/Include/IndustryStandard/QemuCpuHotplug.h |  43 +++++
>  OvmfPkg/OvmfPkgIa32.dsc                           |   2 +-
>  OvmfPkg/OvmfPkgIa32X64.dsc                        |   2 +-
>  OvmfPkg/OvmfPkgX64.dsc                            |   2 +-
>  OvmfPkg/OvmfXen.dsc                               |   4 -
>  OvmfPkg/PlatformPei/Platform.c                    | 172 +++++++++++++++++---
>  OvmfPkg/PlatformPei/PlatformPei.inf               |   2 +-
>  9 files changed, 201 insertions(+), 33 deletions(-)
>  create mode 100644 OvmfPkg/Include/IndustryStandard/QemuCpuHotplug.h
>
> --
> 2.19.1.3.g30247aa5d201
>

-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.

View/Reply Online (#49392): https://edk2.groups.io/g/devel/message/49392
Mute This Topic: https://groups.io/mt/36464999/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-