[PULL 0/9] x86 queue, 2020-10-15

Eduardo Habkost posted 9 patches 3 years, 6 months ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20201015164501.462775-1-ehabkost@redhat.com
Maintainers: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>, Eduardo Habkost <ehabkost@redhat.com>, Eric Blake <eblake@redhat.com>, Sergio Lopez <slp@redhat.com>, Markus Armbruster <armbru@redhat.com>, Marcelo Tosatti <mtosatti@redhat.com>, Paolo Bonzini <pbonzini@redhat.com>, "Michael S. Tsirkin" <mst@redhat.com>, Richard Henderson <rth@twiddle.net>
docs/system/deprecated.rst |  6 ++++++
qapi/machine-target.json   |  7 ++++++-
include/hw/core/cpu.h      |  3 +++
include/sysemu/kvm.h       | 19 +++++++++----------
target/i386/kvm_i386.h     |  1 -
hw/core/machine.c          | 12 ++++++++++--
hw/i386/fw_cfg.c           |  2 +-
hw/i386/kvm/apic.c         |  5 ++---
hw/i386/kvm/ioapic.c       | 33 ++++++++++++++++-----------------
hw/i386/microvm.c          |  2 +-
hw/i386/pc.c               |  2 +-
target/i386/cpu.c          | 32 +++++++++++++++++++++++---------
target/i386/kvm-stub.c     |  5 -----
target/i386/kvm.c          | 19 ++++++-------------
14 files changed, 84 insertions(+), 64 deletions(-)
[PULL 0/9] x86 queue, 2020-10-15
Posted by Eduardo Habkost 3 years, 6 months ago
The following changes since commit 57c98ea9acdcef5021f5671efa6475a5794a51c4:

  Merge remote-tracking branch 'remotes/kraxel/tags/ui-20201014-pull-request' into staging (2020-10-14 13:56:06 +0100)

are available in the Git repository at:

  git://github.com/ehabkost/qemu.git tags/x86-next-pull-request

for you to fetch changes up to 3e6a015cbd0f61c19cdc02d5ce74a3e60235cb9a:

  i386: Mark Icelake-Client CPU models deprecated (2020-10-14 15:28:55 -0400)

----------------------------------------------------------------
x86 queue, 2020-10-15

Cleanups:
* Drop x86_cpu_get_supported_feature_word() forward declaration
  (Vitaly Kuznetsov)
* Delete kvm_allows_irq0_override() (Eduardo Habkost)
* Correct documentation of kvm_irqchip_*() (Eduardo Habkost)
* Fix FEATURE_HYPERV_EDX value in hyperv_passthrough case (Zhenyu Wang)

Deprecation:
* CPU model deprecation API (Robert Hoo)
* Mark Icelake-Client CPU models deprecated (Robert Hoo)

Bug fixes:
* Remove core_id assert check in CPUID 0x8000001E (Babu Moger)

----------------------------------------------------------------

Babu Moger (1):
  target/i386: Remove core_id assert check in CPUID 0x8000001E

Eduardo Habkost (4):
  i386/kvm: Require KVM_CAP_IRQ_ROUTING
  i386/kvm: Remove IRQ routing support checks
  i386/kvm: Delete kvm_allows_irq0_override()
  kvm: Correct documentation of kvm_irqchip_*()

Robert Hoo (2):
  cpu: Introduce CPU model deprecation API
  i386: Mark Icelake-Client CPU models deprecated

Vitaly Kuznetsov (1):
  i386: drop x86_cpu_get_supported_feature_word() forward declaration

Zhenyu Wang (1):
  i386/kvm: fix FEATURE_HYPERV_EDX value in hyperv_passthrough case

 docs/system/deprecated.rst |  6 ++++++
 qapi/machine-target.json   |  7 ++++++-
 include/hw/core/cpu.h      |  3 +++
 include/sysemu/kvm.h       | 19 +++++++++----------
 target/i386/kvm_i386.h     |  1 -
 hw/core/machine.c          | 12 ++++++++++--
 hw/i386/fw_cfg.c           |  2 +-
 hw/i386/kvm/apic.c         |  5 ++---
 hw/i386/kvm/ioapic.c       | 33 ++++++++++++++++-----------------
 hw/i386/microvm.c          |  2 +-
 hw/i386/pc.c               |  2 +-
 target/i386/cpu.c          | 32 +++++++++++++++++++++++---------
 target/i386/kvm-stub.c     |  5 -----
 target/i386/kvm.c          | 19 ++++++-------------
 14 files changed, 84 insertions(+), 64 deletions(-)

-- 
2.28.0



Re: [PULL 0/9] x86 queue, 2020-10-15
Posted by Peter Maydell 3 years, 6 months ago
On Thu, 15 Oct 2020 at 17:45, Eduardo Habkost <ehabkost@redhat.com> wrote:
>
> The following changes since commit 57c98ea9acdcef5021f5671efa6475a5794a51c4:
>
>   Merge remote-tracking branch 'remotes/kraxel/tags/ui-20201014-pull-request' into staging (2020-10-14 13:56:06 +0100)
>
> are available in the Git repository at:
>
>   git://github.com/ehabkost/qemu.git tags/x86-next-pull-request
>
> for you to fetch changes up to 3e6a015cbd0f61c19cdc02d5ce74a3e60235cb9a:
>
>   i386: Mark Icelake-Client CPU models deprecated (2020-10-14 15:28:55 -0400)
>
> ----------------------------------------------------------------
> x86 queue, 2020-10-15
>
> Cleanups:
> * Drop x86_cpu_get_supported_feature_word() forward declaration
>   (Vitaly Kuznetsov)
> * Delete kvm_allows_irq0_override() (Eduardo Habkost)
> * Correct documentation of kvm_irqchip_*() (Eduardo Habkost)
> * Fix FEATURE_HYPERV_EDX value in hyperv_passthrough case (Zhenyu Wang)
>
> Deprecation:
> * CPU model deprecation API (Robert Hoo)
> * Mark Icelake-Client CPU models deprecated (Robert Hoo)
>
> Bug fixes:
> * Remove core_id assert check in CPUID 0x8000001E (Babu Moger)
>


Applied, thanks.

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

-- PMM