All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL 00/40] Misc patches for 2021-07-06
@ 2021-07-06 10:01 Paolo Bonzini
  2021-07-06 10:01 ` [PULL 01/40] Makefile: Remove /usr/bin/env wrapper from the SHELL variable Paolo Bonzini
                   ` (40 more replies)
  0 siblings, 41 replies; 60+ messages in thread
From: Paolo Bonzini @ 2021-07-06 10:01 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit 715167a36c2b152f6511cff690180c1254ae039f:

  Merge remote-tracking branch 'remotes/dgilbert-gitlab/tags/pull-migration-20210705a' into staging (2021-07-05 12:45:24 +0100)

are available in the Git repository at:

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

for you to fetch changes up to 7ca6f2ad375d32e81844788dbc2b05a04cc391b5:

  config-host.mak: remove unused compiler-related lines (2021-07-06 09:35:08 +0200)

----------------------------------------------------------------
* More Meson test conversions and configure cleanups
* Generalize XSAVE area offset so that it matches AMD processors on KVM
* Improvements for -display and deprecation of -no-quit
* Enable SMP configuration as a compound machine property ("-M smp.cpus=...")
* Haiku compilation fix
* Add icon on Darwin

----------------------------------------------------------------
David Edmondson (8):
      target/i386: Declare constants for XSAVE offsets
      target/i386: Consolidate the X86XSaveArea offset checks
      target/i386: Clarify the padding requirements of X86XSaveArea
      target/i386: Pass buffer and length to XSAVE helper
      target/i386: Make x86_ext_save_areas visible outside cpu.c
      target/i386: Observe XSAVE state area offsets
      target/i386: Populate x86_ext_save_areas offsets using cpuid where possible
      target/i386: Move X86XSaveArea into TCG

John Arbuckle (1):
      Set icon for QEMU binary on Mac OS

Paolo Bonzini (25):
      coverity-scan: switch to vpath build
      configure: drop vte-2.90 check
      configure, meson: convert vte detection to meson
      configure, meson: convert virgl detection to meson
      configure, meson: convert libdaxctl detection to meson
      configure, meson: convert libpmem detection to meson
      configure, meson: convert liburing detection to meson
      configure, meson: convert libxml2 detection to meson
      meson: sort existing compiler tests
      meson: store dependency('threads') in a variable
      configure, meson: move CONFIG_IVSHMEM to meson
      configure: convert HAVE_BROKEN_SIZE_MAX to meson
      configure: convert compiler tests to meson, part 1
      configure: convert compiler tests to meson, part 2
      configure: convert compiler tests to meson, part 3
      configure: convert compiler tests to meson, part 4
      configure: convert compiler tests to meson, part 5
      configure: convert compiler tests to meson, part 6
      qom: export more functions for use with non-UserCreatable objects
      keyval: introduce keyval_merge
      keyval: introduce keyval_parse_into
      vl: switch -M parsing to keyval
      machine: add smp compound property
      qemu-option: remove now-dead code
      config-host.mak: remove unused compiler-related lines

Philippe Mathieu-Daudé (1):
      coverity-scan: Remove lm32 / unicore32 targets

Thomas Huth (5):
      Makefile: Remove /usr/bin/env wrapper from the SHELL variable
      softmmu/vl: Remove obsolete comment about the "frame" parameter
      ui: Fix the "-display sdl,window_close=..." parameter
      ui: Mark the '-no-quit' option as deprecated
      qemu-options: Improve the documentation of the -display options

 Makefile                                |    2 +-
 configure                               | 1023 +------------------------------
 docs/devel/kconfig.rst                  |    2 +-
 docs/system/deprecated.rst              |   12 +
 hw/core/machine.c                       |  108 ++--
 hw/display/meson.build                  |    6 +-
 include/hw/boards.h                     |    1 -
 include/qemu/option.h                   |    6 +-
 include/qom/object.h                    |   23 +
 meson.build                             |  231 +++++--
 meson_options.txt                       |   12 +
 qemu-options.hx                         |   50 +-
 qom/object_interfaces.c                 |   58 +-
 scripts/coverity-scan/COMPONENTS.md     |    6 -
 scripts/coverity-scan/run-coverity-scan |    8 +-
 scripts/entitlement.sh                  |   10 +-
 softmmu/vl.c                            |  359 +++++------
 target/i386/cpu.c                       |   18 +-
 target/i386/cpu.h                       |   41 +-
 target/i386/hvf/hvf-cpu.c               |   29 +
 target/i386/hvf/hvf.c                   |    9 +-
 target/i386/hvf/x86hvf.c                |   19 +-
 target/i386/kvm/kvm-cpu.c               |   30 +
 target/i386/kvm/kvm.c                   |   59 +-
 target/i386/tcg/fpu_helper.c            |    1 +
 target/i386/tcg/tcg-cpu.c               |   20 +
 target/i386/tcg/tcg-cpu.h               |   57 ++
 target/i386/xsave_helper.c              |  273 +++++++--
 tests/qtest/numa-test.c                 |   22 +-
 tests/unit/test-keyval.c                |   58 ++
 tests/unit/test-qemu-opts.c             |   35 --
 util/keyval.c                           |  123 +++-
 util/meson.build                        |    5 +-
 util/qemu-option.c                      |   51 +-
 34 files changed, 1179 insertions(+), 1588 deletions(-)
-- 
2.31.1



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

end of thread, other threads:[~2021-07-22 14:51 UTC | newest]

Thread overview: 60+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-06 10:01 [PULL 00/40] Misc patches for 2021-07-06 Paolo Bonzini
2021-07-06 10:01 ` [PULL 01/40] Makefile: Remove /usr/bin/env wrapper from the SHELL variable Paolo Bonzini
2021-07-06 10:01 ` [PULL 02/40] softmmu/vl: Remove obsolete comment about the "frame" parameter Paolo Bonzini
2021-07-06 10:01 ` [PULL 03/40] ui: Fix the "-display sdl,window_close=..." parameter Paolo Bonzini
2021-07-06 10:01 ` [PULL 04/40] ui: Mark the '-no-quit' option as deprecated Paolo Bonzini
2021-07-06 10:01 ` [PULL 05/40] qemu-options: Improve the documentation of the -display options Paolo Bonzini
2021-07-06 10:01 ` [PULL 06/40] coverity-scan: Remove lm32 / unicore32 targets Paolo Bonzini
2021-07-06 10:01 ` [PULL 07/40] coverity-scan: switch to vpath build Paolo Bonzini
2021-07-06 10:01 ` [PULL 08/40] target/i386: Declare constants for XSAVE offsets Paolo Bonzini
2021-07-06 10:01 ` [PULL 09/40] target/i386: Consolidate the X86XSaveArea offset checks Paolo Bonzini
2021-07-06 10:01 ` [PULL 10/40] target/i386: Clarify the padding requirements of X86XSaveArea Paolo Bonzini
2021-07-06 10:01 ` [PULL 11/40] target/i386: Pass buffer and length to XSAVE helper Paolo Bonzini
2021-07-06 10:01 ` [PULL 12/40] target/i386: Make x86_ext_save_areas visible outside cpu.c Paolo Bonzini
2021-07-06 10:01 ` [PULL 13/40] target/i386: Observe XSAVE state area offsets Paolo Bonzini
2021-07-06 10:01 ` [PULL 14/40] target/i386: Populate x86_ext_save_areas offsets using cpuid where possible Paolo Bonzini
2021-07-06 10:01 ` [PULL 15/40] target/i386: Move X86XSaveArea into TCG Paolo Bonzini
2021-07-06 10:01 ` [PULL 16/40] configure: drop vte-2.90 check Paolo Bonzini
2021-07-06 10:01 ` [PULL 17/40] configure, meson: convert vte detection to meson Paolo Bonzini
2021-07-06 10:01 ` [PULL 18/40] configure, meson: convert virgl " Paolo Bonzini
2021-07-06 10:01 ` [PULL 19/40] configure, meson: convert libdaxctl " Paolo Bonzini
2021-07-06 10:01 ` [PULL 20/40] configure, meson: convert libpmem " Paolo Bonzini
2021-07-06 10:01 ` [PULL 21/40] configure, meson: convert liburing " Paolo Bonzini
2021-07-06 10:01 ` [PULL 22/40] configure, meson: convert libxml2 " Paolo Bonzini
2021-07-06 10:01 ` [PULL 23/40] meson: sort existing compiler tests Paolo Bonzini
2021-07-06 10:01 ` [PULL 24/40] meson: store dependency('threads') in a variable Paolo Bonzini
2021-07-06 10:01 ` [PULL 25/40] configure, meson: move CONFIG_IVSHMEM to meson Paolo Bonzini
2021-07-06 10:01 ` [PULL 26/40] configure: convert HAVE_BROKEN_SIZE_MAX " Paolo Bonzini
2021-07-06 10:01 ` [PULL 27/40] configure: convert compiler tests to meson, part 1 Paolo Bonzini
2021-07-06 10:01 ` [PULL 28/40] configure: convert compiler tests to meson, part 2 Paolo Bonzini
2021-07-06 10:01 ` [PULL 29/40] configure: convert compiler tests to meson, part 3 Paolo Bonzini
2021-07-06 10:01 ` [PULL 30/40] configure: convert compiler tests to meson, part 4 Paolo Bonzini
2021-07-06 10:01 ` [PULL 31/40] configure: convert compiler tests to meson, part 5 Paolo Bonzini
2021-07-06 10:01 ` [PULL 32/40] configure: convert compiler tests to meson, part 6 Paolo Bonzini
2021-07-06 10:01 ` [PULL 33/40] qom: export more functions for use with non-UserCreatable objects Paolo Bonzini
2021-07-06 10:01 ` [PULL 34/40] keyval: introduce keyval_merge Paolo Bonzini
2021-07-06 10:01 ` [PULL 35/40] keyval: introduce keyval_parse_into Paolo Bonzini
2021-07-06 10:01 ` [PULL 36/40] vl: switch -M parsing to keyval Paolo Bonzini
2021-07-08 16:31   ` Jason Andryuk
2021-07-08 16:31     ` Jason Andryuk
2021-07-13  2:15     ` [PATCH] vl: Parse legacy default_machine_opts Jason Andryuk
2021-07-22 14:12       ` Anthony PERARD via
2021-07-22 14:12         ` Anthony PERARD
2021-07-22 14:39         ` Paolo Bonzini
2021-07-22 14:39           ` Paolo Bonzini
2021-07-12 19:24   ` [PULL 36/40] vl: switch -M parsing to keyval Volker Rümelin
2021-07-13 19:43   ` Alex Williamson
2021-07-13 23:10     ` Alex Williamson
2021-07-14  6:16       ` Mark Cave-Ayland
2021-07-14 22:13         ` Alex Williamson
2021-07-22  8:19   ` Peter Krempa
2021-07-22 14:39     ` Paolo Bonzini
2021-07-22 14:50       ` Peter Krempa
2021-07-06 10:01 ` [PULL 37/40] machine: add smp compound property Paolo Bonzini
2021-07-13 10:37   ` Peter Maydell
2021-07-13 11:07     ` Markus Armbruster
2021-07-13 10:53   ` Peter Maydell
2021-07-06 10:01 ` [PULL 38/40] qemu-option: remove now-dead code Paolo Bonzini
2021-07-06 10:01 ` [PULL 39/40] Set icon for QEMU binary on Mac OS Paolo Bonzini
2021-07-06 10:01 ` [PULL 40/40] config-host.mak: remove unused compiler-related lines Paolo Bonzini
2021-07-06 12:10 ` [PULL 00/40] Misc patches for 2021-07-06 Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.