mbox

[PULL,0/7] x86 queue, 2018-10-30

Message ID 20181031004550.15410-1-ehabkost@redhat.com
State New
Headers show

Pull-request

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

Message

Eduardo Habkost Oct. 31, 2018, 12:45 a.m. UTC
Sorry for submitting this at the last minute.

The following changes since commit a2e002ff7913ce93aa0f7dbedd2123dce5f1a9cd:

  Merge remote-tracking branch 'remotes/vivier2/tags/qemu-trivial-for-3.1-pull-request' into staging (2018-10-30 15:49:55 +0000)

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 c4fc3c4d9b456a145e8f3fd75496e1dacb578473:

  i386: Add PKU on Skylake-Server CPU model (2018-10-30 21:14:43 -0300)

----------------------------------------------------------------
x86 queue, 2018-10-30

* MSR-based feature support for
  MSR_IA32_ARCH_CAPABILITIES bits (Robert Hoo)
* Cascadelake-Server CPU model (Tao Xu)
* Add PKU on Skylake-Server CPU model (Tao Xu)
* Correct cpu_x86_cpuid(0xd) (Sebastian Andrzej Siewior)
* Remove dead code (Peter Maydell)

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

Peter Maydell (1):
  target/i386: Remove #ifdeffed-out icebp debugging hack

Robert Hoo (3):
  kvm: Add support to KVM_GET_MSR_FEATURE_INDEX_LIST and KVM_GET_MSRS
    system ioctl
  x86: Data structure changes to support MSR based features
  x86: define a new MSR based feature word --
    FEATURE_WORDS_ARCH_CAPABILITIES

Sebastian Andrzej Siewior (1):
  i386: correct cpu_x86_cpuid(0xd)

Tao Xu (2):
  i386: Add new model of Cascadelake-Server
  i386: Add PKU on Skylake-Server CPU model

 include/hw/i386/pc.h    |  10 +-
 include/sysemu/kvm.h    |   2 +
 target/i386/cpu.h       |   8 ++
 target/i386/cpu.c       | 279 ++++++++++++++++++++++++++++++++--------
 target/i386/kvm.c       |  91 +++++++++++++
 target/i386/translate.c |   6 -
 6 files changed, 333 insertions(+), 63 deletions(-)

Comments

Eduardo Habkost Oct. 31, 2018, 2:07 p.m. UTC | #1
Peter, my S-o-b line was missing on some commits, I have just pushed a new
x86-next-pull-request tag, with exactly the same tree.  Sorry for the noise.

Thanks to Eric Blake for reporting the issue.

The following changes since commit a2e002ff7913ce93aa0f7dbedd2123dce5f1a9cd:

  Merge remote-tracking branch 'remotes/vivier2/tags/qemu-trivial-for-3.1-pull-request' into staging (2018-10-30 15:49:55 +0000)

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 09b9ee643f90ef95e30e594df2a3c83ccaf75b1f:

  i386: Add PKU on Skylake-Server CPU model (2018-10-30 21:14:43 -0300)

----------------------------------------------------------------
x86 queue, 2018-10-30

* MSR-based feature support for
  MSR_IA32_ARCH_CAPABILITIES bits (Robert Hoo)
* Cascadelake-Server CPU model (Tao Xu)
* Add PKU on Skylake-Server CPU model (Tao Xu)
* Correct cpu_x86_cpuid(0xd) (Sebastian Andrzej Siewior)
* Remove dead code (Peter Maydell)

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

Peter Maydell (1):
  target/i386: Remove #ifdeffed-out icebp debugging hack

Robert Hoo (3):
  kvm: Add support to KVM_GET_MSR_FEATURE_INDEX_LIST and KVM_GET_MSRS
    system ioctl
  x86: Data structure changes to support MSR based features
  x86: define a new MSR based feature word --
    FEATURE_WORDS_ARCH_CAPABILITIES

Sebastian Andrzej Siewior (1):
  i386: correct cpu_x86_cpuid(0xd)

Tao Xu (2):
  i386: Add new model of Cascadelake-Server
  i386: Add PKU on Skylake-Server CPU model

 include/hw/i386/pc.h    |  10 +-
 include/sysemu/kvm.h    |   2 +
 target/i386/cpu.h       |   8 ++
 target/i386/cpu.c       | 279 ++++++++++++++++++++++++++++++++--------
 target/i386/kvm.c       |  91 +++++++++++++
 target/i386/translate.c |   6 -
 6 files changed, 333 insertions(+), 63 deletions(-)
Peter Maydell Nov. 1, 2018, 5:25 p.m. UTC | #2
On 31 October 2018 at 14:07, Eduardo Habkost <ehabkost@redhat.com> wrote:
> Peter, my S-o-b line was missing on some commits, I have just pushed a new
> x86-next-pull-request tag, with exactly the same tree.  Sorry for the noise.
>
> Thanks to Eric Blake for reporting the issue.
>
> The following changes since commit a2e002ff7913ce93aa0f7dbedd2123dce5f1a9cd:
>
>   Merge remote-tracking branch 'remotes/vivier2/tags/qemu-trivial-for-3.1-pull-request' into staging (2018-10-30 15:49:55 +0000)
>
> 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 09b9ee643f90ef95e30e594df2a3c83ccaf75b1f:
>
>   i386: Add PKU on Skylake-Server CPU model (2018-10-30 21:14:43 -0300)
>
> ----------------------------------------------------------------
> x86 queue, 2018-10-30
>
> * MSR-based feature support for
>   MSR_IA32_ARCH_CAPABILITIES bits (Robert Hoo)
> * Cascadelake-Server CPU model (Tao Xu)
> * Add PKU on Skylake-Server CPU model (Tao Xu)
> * Correct cpu_x86_cpuid(0xd) (Sebastian Andrzej Siewior)
> * Remove dead code (Peter Maydell)
>
> ----------------------------------------------------------------

Applied, thanks.

-- PMM