[PULL 00/17] Misc patches for 2023-04-29

Paolo Bonzini posted 17 patches 1 year ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20230429121636.230934-1-pbonzini@redhat.com
Maintainers: Richard Henderson <richard.henderson@linaro.org>, Paolo Bonzini <pbonzini@redhat.com>, "Michael S. Tsirkin" <mst@redhat.com>, Cornelia Huck <cohuck@redhat.com>, Eric Blake <eblake@redhat.com>, Markus Armbruster <armbru@redhat.com>, Alessandro Di Federico <ale@rev.ng>, Anton Johansson <anjo@rev.ng>, Marcelo Tosatti <mtosatti@redhat.com>, Thomas Huth <thuth@redhat.com>, Laurent Vivier <lvivier@redhat.com>, Stefan Hajnoczi <stefanha@redhat.com>, Fam Zheng <fam@euphon.net>
There is a newer version of this series
cpus-common.c                                |   4 +-
include/standard-headers/drm/drm_fourcc.h    |  12 +++
include/standard-headers/linux/ethtool.h     |  48 ++++++++++-
include/standard-headers/linux/fuse.h        |  45 ++++++++++-
include/standard-headers/linux/pci_regs.h    |   1 +
include/standard-headers/linux/vhost_types.h |   2 +
include/standard-headers/linux/virtio_blk.h  | 105 ++++++++++++++++++++++++
linux-headers/asm-arm64/kvm.h                |   1 +
linux-headers/asm-x86/kvm.h                  |  34 +++++++-
linux-headers/linux/const.h                  |  36 +++++++++
linux-headers/linux/kvm.h                    |   9 +++
linux-headers/linux/memfd.h                  |  39 +++++++++
linux-headers/linux/nvme_ioctl.h             | 114 +++++++++++++++++++++++++++
linux-headers/linux/stddef.h                 |  47 +++++++++++
linux-headers/linux/vfio.h                   |  15 ++--
linux-headers/linux/vhost.h                  |   8 ++
qapi/misc-target.json                        |   2 +-
qemu-options.hx                              |   4 +-
scripts/update-linux-headers.sh              |   4 +-
subprojects/libvhost-user/libvhost-user.c    |   6 ++
target/hexagon/idef-parser/parser-helpers.c  |   2 +-
target/i386/cpu.c                            |  30 +++++--
target/i386/cpu.h                            |  14 ++++
target/i386/sev.c                            |  17 +++-
tests/qtest/vhost-user-test.c                |   3 +-
util/async.c                                 |  14 ++++
26 files changed, 589 insertions(+), 27 deletions(-)
create mode 100644 linux-headers/linux/const.h
create mode 100644 linux-headers/linux/memfd.h
create mode 100644 linux-headers/linux/nvme_ioctl.h
create mode 100644 linux-headers/linux/stddef.h
[PULL 00/17] Misc patches for 2023-04-29
Posted by Paolo Bonzini 1 year ago
The following changes since commit 05d50ba2d4668d43a835c5a502efdec9b92646e6:

  Merge tag 'migration-20230427-pull-request' of https://gitlab.com/juan.quintela/qemu into staging (2023-04-28 08:35:06 +0100)

are available in the Git repository at:

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

for you to fetch changes up to f40288a1f22acbf0ff6b08c192fa993e4af935ef:

  cpus-common: stop using mb_set/mb_read (2023-04-28 15:56:42 +0200)

----------------------------------------------------------------
* Fix compilation issues under Debian 10
* Update kernel headers to 6.3rc5
* Suppress GCC13 false positive in aio_bh_poll()
* Add new x86 feature bits
* Coverity fixes
* More steps towards removing qatomic_mb_set/read
* Fix reduced-phys-bits value for AMD SEV

----------------------------------------------------------------
Cédric Le Goater (1):
      async: Suppress GCC13 false positive in aio_bh_poll()

David 'Digit' Turner (3):
      Fix libvhost-user.c compilation.
      update-linux-headers.sh: Add missing kernel headers.
      Update linux headers to v6.3rc5

Jiaxi Chen (6):
      target/i386: Add support for CMPCCXADD in CPUID enumeration
      target/i386: Add support for AMX-FP16 in CPUID enumeration
      target/i386: Add support for AVX-IFMA in CPUID enumeration
      target/i386: Add support for AVX-VNNI-INT8 in CPUID enumeration
      target/i386: Add support for AVX-NE-CONVERT in CPUID enumeration
      target/i386: Add support for PREFETCHIT0/1 in CPUID enumeration

Paolo Bonzini (3):
      tests: vhost-user-test: release mutex on protocol violation
      target/hexagon: fix = vs. == mishap
      cpus-common: stop using mb_set/mb_read

Tom Lendacky (4):
      qapi, i386/sev: Change the reduced-phys-bits value from 5 to 1
      qemu-options.hx: Update the reduced-phys-bits documentation
      i386/sev: Update checks and information related to reduced-phys-bits
      i386/cpu: Update how the EBX register of CPUID 0x8000001F is set

 cpus-common.c                                |   4 +-
 include/standard-headers/drm/drm_fourcc.h    |  12 +++
 include/standard-headers/linux/ethtool.h     |  48 ++++++++++-
 include/standard-headers/linux/fuse.h        |  45 ++++++++++-
 include/standard-headers/linux/pci_regs.h    |   1 +
 include/standard-headers/linux/vhost_types.h |   2 +
 include/standard-headers/linux/virtio_blk.h  | 105 ++++++++++++++++++++++++
 linux-headers/asm-arm64/kvm.h                |   1 +
 linux-headers/asm-x86/kvm.h                  |  34 +++++++-
 linux-headers/linux/const.h                  |  36 +++++++++
 linux-headers/linux/kvm.h                    |   9 +++
 linux-headers/linux/memfd.h                  |  39 +++++++++
 linux-headers/linux/nvme_ioctl.h             | 114 +++++++++++++++++++++++++++
 linux-headers/linux/stddef.h                 |  47 +++++++++++
 linux-headers/linux/vfio.h                   |  15 ++--
 linux-headers/linux/vhost.h                  |   8 ++
 qapi/misc-target.json                        |   2 +-
 qemu-options.hx                              |   4 +-
 scripts/update-linux-headers.sh              |   4 +-
 subprojects/libvhost-user/libvhost-user.c    |   6 ++
 target/hexagon/idef-parser/parser-helpers.c  |   2 +-
 target/i386/cpu.c                            |  30 +++++--
 target/i386/cpu.h                            |  14 ++++
 target/i386/sev.c                            |  17 +++-
 tests/qtest/vhost-user-test.c                |   3 +-
 util/async.c                                 |  14 ++++
 26 files changed, 589 insertions(+), 27 deletions(-)
 create mode 100644 linux-headers/linux/const.h
 create mode 100644 linux-headers/linux/memfd.h
 create mode 100644 linux-headers/linux/nvme_ioctl.h
 create mode 100644 linux-headers/linux/stddef.h
-- 
2.40.0