qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/17] Misc patches for 2023-04-29
@ 2023-04-29 12:16 Paolo Bonzini
  2023-04-29 12:16 ` [PULL 01/17] qapi, i386/sev: Change the reduced-phys-bits value from 5 to 1 Paolo Bonzini
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: Paolo Bonzini @ 2023-04-29 12:16 UTC (permalink / raw)
  To: qemu-devel

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



^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2023-04-29 12:19 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-29 12:16 [PULL 00/17] Misc patches for 2023-04-29 Paolo Bonzini
2023-04-29 12:16 ` [PULL 01/17] qapi, i386/sev: Change the reduced-phys-bits value from 5 to 1 Paolo Bonzini
2023-04-29 12:16 ` [PULL 02/17] qemu-options.hx: Update the reduced-phys-bits documentation Paolo Bonzini
2023-04-29 12:16 ` [PULL 03/17] i386/sev: Update checks and information related to reduced-phys-bits Paolo Bonzini
2023-04-29 12:16 ` [PULL 04/17] i386/cpu: Update how the EBX register of CPUID 0x8000001F is set Paolo Bonzini
2023-04-29 12:16 ` [PULL 05/17] target/i386: Add support for CMPCCXADD in CPUID enumeration Paolo Bonzini
2023-04-29 12:16 ` [PULL 06/17] target/i386: Add support for AMX-FP16 " Paolo Bonzini
2023-04-29 12:16 ` [PULL 07/17] target/i386: Add support for AVX-IFMA " Paolo Bonzini
2023-04-29 12:16 ` [PULL 08/17] target/i386: Add support for AVX-VNNI-INT8 " Paolo Bonzini
2023-04-29 12:16 ` [PULL 09/17] target/i386: Add support for AVX-NE-CONVERT " Paolo Bonzini
2023-04-29 12:16 ` [PULL 10/17] target/i386: Add support for PREFETCHIT0/1 " Paolo Bonzini
2023-04-29 12:16 ` [PULL 11/17] Fix libvhost-user.c compilation Paolo Bonzini
2023-04-29 12:16 ` [PULL 12/17] update-linux-headers.sh: Add missing kernel headers Paolo Bonzini
2023-04-29 12:16 ` [PULL 13/17] Update linux headers to v6.3rc5 Paolo Bonzini
2023-04-29 12:16 ` [PULL 14/17] tests: vhost-user-test: release mutex on protocol violation Paolo Bonzini
2023-04-29 12:16 ` [PULL 15/17] target/hexagon: fix = vs. == mishap Paolo Bonzini
2023-04-29 12:16 ` [PULL 16/17] async: Suppress GCC13 false positive in aio_bh_poll() Paolo Bonzini
2023-04-29 12:16 ` [PULL 17/17] cpus-common: stop using mb_set/mb_read Paolo Bonzini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).