[PULL v2 00/21] i386, qgraph patches for 2020-02-15

Paolo Bonzini posted 21 patches 3 years, 2 months ago
Only 2 patches received!
accel/kvm/kvm-all.c                  |   6 +-
hw/i386/pc_sysfw.c                   | 130 ++++++++++++++++++++++++-
include/hw/i386/pc.h                 |   4 +
include/sysemu/cpus.h                |   2 +
include/sysemu/hw_accel.h            |   5 +
include/sysemu/kvm.h                 |  10 ++
include/sysemu/replay.h              |  14 +--
include/sysemu/sev.h                 |   5 +
qapi/misc-target.json                |   2 +-
replay/replay-internal.c             |  29 +++++-
replay/replay-time.c                 |   4 +-
replay/replay.c                      |  23 +----
softmmu/cpus.c                       |   5 +
softmmu/runstate.c                   |   3 +
stubs/replay-tools.c                 |   2 +-
target/arm/kvm.c                     |   5 +
target/i386/cpu.c                    |   1 +
target/i386/cpu.h                    |   1 +
target/i386/hvf/hvf-i386.h           |  16 ----
target/i386/hvf/hvf.c                | 100 +++++++++++++++++++-
target/i386/hvf/x86_cpuid.c          |  34 ++++---
target/i386/hvf/x86_emu.c            |   5 +
target/i386/kvm/kvm.c                |  10 +-
target/i386/monitor.c                |  23 ++++-
target/i386/sev-stub.c               |  15 +++
target/i386/sev.c                    | 178 ++++++++++++++++++++++++++++++++++-
target/i386/sev_i386.h               |   2 +-
target/mips/kvm.c                    |   5 +
target/ppc/kvm.c                     |   5 +
target/s390x/kvm.c                   |   5 +
tests/qtest/libqos/qgraph.c          |  99 ++++++++++++++++++-
tests/qtest/libqos/qgraph.h          |  36 +++++++
tests/qtest/libqos/qgraph_internal.h |  12 +++
tests/qtest/qos-test.c               |  15 ++-
util/cutils.c                        |   3 +-
util/event_notifier-posix.c          |   2 +-
36 files changed, 735 insertions(+), 81 deletions(-)
[PULL v2 00/21] i386, qgraph patches for 2020-02-15
Posted by Paolo Bonzini 3 years, 2 months ago
The following changes since commit 8ba4bca570ace1e60614a0808631a517cf5df67a:

  Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (2021-02-15 17:13:57 +0000)

are available in the Git repository at:

  https://gitlab.com/bonzini/qemu.git tags/for-upstream

for you to fetch changes up to 366a85e4bb748794b1ae0ca0ccc2d95f316679a0:

  replay: fix icount request when replaying clock access (2021-02-16 17:15:39 +0100)

----------------------------------------------------------------
* HVF fixes
* Extra qos-test debugging output (Christian)
* SEV secret address autodetection (James)
* SEV-ES support (Thomas)
* Relocatable paths bugfix (Stefan)
* RR fix (Pavel)
* EventNotifier fix (Greg)

----------------------------------------------------------------
Alexander Graf (2):
      hvf: x86: Remove unused definitions
      hvf: Fetch cr4 before evaluating CPUID(1)

Christian Schoenebeck (5):
      libqos/qgraph: add qos_node_create_driver_named()
      libqos/qgraph_internal: add qos_printf() and qos_printf_literal()
      tests/qtest/qos-test: dump qos graph if verbose
      tests/qtest/qos-test: dump environment variables if verbose
      tests/qtest/qos-test: dump QEMU command if verbose

Greg Kurz (1):
      event_notifier: Set ->initialized earlier in event_notifier_init()

Hill Ma (1):
      hvf: Guard xgetbv call

James Bottomley (2):
      pc: add parser for OVMF reset block
      sev: update sev-inject-launch-secret to make gpa optional

Paolo Bonzini (1):
      sev/i386: Allow AP booting under SEV-ES

Pavel Dovgalyuk (1):
      replay: fix icount request when replaying clock access

Stefan Weil (1):
      util/cutils: Skip "." when looking for next directory component

Tom Lendacky (5):
      sev/i386: Add initial support for SEV-ES
      sev/i386: Require in-kernel irqchip support for SEV-ES guests
      sev/i386: Don't allow a system reset under an SEV-ES guest
      kvm/i386: Use a per-VM check for SMM capability
      sev/i386: Enable an SEV-ES guest based on SEV policy

Vladislav Yaroshchuk (2):
      target/i386/hvf: add vmware-cpuid-freq cpu feature
      target/i386/hvf: add rdmsr 35H MSR_CORE_THREAD_COUNT

 accel/kvm/kvm-all.c                  |   6 +-
 hw/i386/pc_sysfw.c                   | 130 ++++++++++++++++++++++++-
 include/hw/i386/pc.h                 |   4 +
 include/sysemu/cpus.h                |   2 +
 include/sysemu/hw_accel.h            |   5 +
 include/sysemu/kvm.h                 |  10 ++
 include/sysemu/replay.h              |  14 +--
 include/sysemu/sev.h                 |   5 +
 qapi/misc-target.json                |   2 +-
 replay/replay-internal.c             |  29 +++++-
 replay/replay-time.c                 |   4 +-
 replay/replay.c                      |  23 +----
 softmmu/cpus.c                       |   5 +
 softmmu/runstate.c                   |   3 +
 stubs/replay-tools.c                 |   2 +-
 target/arm/kvm.c                     |   5 +
 target/i386/cpu.c                    |   1 +
 target/i386/cpu.h                    |   1 +
 target/i386/hvf/hvf-i386.h           |  16 ----
 target/i386/hvf/hvf.c                | 100 +++++++++++++++++++-
 target/i386/hvf/x86_cpuid.c          |  34 ++++---
 target/i386/hvf/x86_emu.c            |   5 +
 target/i386/kvm/kvm.c                |  10 +-
 target/i386/monitor.c                |  23 ++++-
 target/i386/sev-stub.c               |  15 +++
 target/i386/sev.c                    | 178 ++++++++++++++++++++++++++++++++++-
 target/i386/sev_i386.h               |   2 +-
 target/mips/kvm.c                    |   5 +
 target/ppc/kvm.c                     |   5 +
 target/s390x/kvm.c                   |   5 +
 tests/qtest/libqos/qgraph.c          |  99 ++++++++++++++++++-
 tests/qtest/libqos/qgraph.h          |  36 +++++++
 tests/qtest/libqos/qgraph_internal.h |  12 +++
 tests/qtest/qos-test.c               |  15 ++-
 util/cutils.c                        |   3 +-
 util/event_notifier-posix.c          |   2 +-
 36 files changed, 735 insertions(+), 81 deletions(-)
-- 
2.29.2


Re: [PULL v2 00/21] i386, qgraph patches for 2020-02-15
Posted by Peter Maydell 3 years, 2 months ago
On Tue, 16 Feb 2021 at 18:29, Paolo Bonzini <pbonzini@redhat.com> wrote:
>
> The following changes since commit 8ba4bca570ace1e60614a0808631a517cf5df67a:
>
>   Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (2021-02-15 17:13:57 +0000)
>
> are available in the Git repository at:
>
>   https://gitlab.com/bonzini/qemu.git tags/for-upstream
>
> for you to fetch changes up to 366a85e4bb748794b1ae0ca0ccc2d95f316679a0:
>
>   replay: fix icount request when replaying clock access (2021-02-16 17:15:39 +0100)
>
> ----------------------------------------------------------------
> * HVF fixes
> * Extra qos-test debugging output (Christian)
> * SEV secret address autodetection (James)
> * SEV-ES support (Thomas)
> * Relocatable paths bugfix (Stefan)
> * RR fix (Pavel)
> * EventNotifier fix (Greg)


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/6.0
for any user-visible changes.

-- PMM