mbox

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

Message ID 20201015164501.462775-1-ehabkost@redhat.com (mailing list archive)
State New, archived
Headers show

Pull-request

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

Message

Eduardo Habkost Oct. 15, 2020, 4:44 p.m. UTC
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(-)

Comments

Peter Maydell Oct. 17, 2020, 10:46 a.m. UTC | #1
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