Skip to content
Snippets Groups Projects
  1. Jul 09, 2021
  2. Jul 08, 2021
  3. Jul 07, 2021
  4. Jul 06, 2021
    • Peter Maydell's avatar
      Merge remote-tracking branch 'remotes/bonzini-gitlab/tags/for-upstream' into staging · 9aef0954
      Peter Maydell authored
      
      * 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
      
      # gpg: Signature made Tue 06 Jul 2021 08:35:23 BST
      # gpg:                using RSA key F13338574B662389866C7682BFFBD25F78C7AE83
      # gpg:                issuer "pbonzini@redhat.com"
      # gpg: Good signature from "Paolo Bonzini <bonzini@gnu.org>" [full]
      # gpg:                 aka "Paolo Bonzini <pbonzini@redhat.com>" [full]
      # Primary key fingerprint: 46F5 9FBD 57D6 12E7 BFD4  E2F7 7E15 100C CD36 69B1
      #      Subkey fingerprint: F133 3857 4B66 2389 866C  7682 BFFB D25F 78C7 AE83
      
      * remotes/bonzini-gitlab/tags/for-upstream: (40 commits)
        config-host.mak: remove unused compiler-related lines
        Set icon for QEMU binary on Mac OS
        qemu-option: remove now-dead code
        machine: add smp compound property
        vl: switch -M parsing to keyval
        keyval: introduce keyval_parse_into
        keyval: introduce keyval_merge
        qom: export more functions for use with non-UserCreatable objects
        configure: convert compiler tests to meson, part 6
        configure: convert compiler tests to meson, part 5
        configure: convert compiler tests to meson, part 4
        configure: convert compiler tests to meson, part 3
        configure: convert compiler tests to meson, part 2
        configure: convert compiler tests to meson, part 1
        configure: convert HAVE_BROKEN_SIZE_MAX to meson
        configure, meson: move CONFIG_IVSHMEM to meson
        meson: store dependency('threads') in a variable
        meson: sort existing compiler tests
        configure, meson: convert libxml2 detection to meson
        configure, meson: convert liburing detection to meson
        ...
      
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      9aef0954
    • Paolo Bonzini's avatar
      config-host.mak: remove unused compiler-related lines · 7ca6f2ad
      Paolo Bonzini authored
      
      Most of the build is not done via Makefiles, therefore the toolchain
      variables are mostly unused.  They are still used by tests/tcg
      and pc-bios/roms, but most of them are not needed there.
      
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      7ca6f2ad
    • John Arbuckle's avatar
      Set icon for QEMU binary on Mac OS · 3983a767
      John Arbuckle authored
      
      Before switching the build system over to Meson, an icon was
      added to the QEMU binary on Mac OS. This patch adds back that
      feature; it piggybacks on the existing scripts/entitlement.sh,
      which already does in-place changes to the executable on Darwin.
      
      Signed-off-by: default avatarJohn Arbuckle <programmingkidx@gmail.com>
      Message-Id: <20210705195328.36442-1-programmingkidx@gmail.com>
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      3983a767
    • Paolo Bonzini's avatar
      qemu-option: remove now-dead code · 904806c6
      Paolo Bonzini authored
      
      -M was the sole user of qemu_opts_set and qemu_opts_set_defaults,
      remove them and the arguments that they used.
      
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      904806c6
    • Paolo Bonzini's avatar
      machine: add smp compound property · fe68090e
      Paolo Bonzini authored
      
      Make -smp syntactic sugar for a compound property "-machine
      smp.{cores,threads,cpu,...}".  machine_smp_parse is replaced by the
      setter for the property.
      
      numa-test will now cover the new syntax, while other tests
      still use -smp.
      
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      fe68090e
    • Paolo Bonzini's avatar
      vl: switch -M parsing to keyval · d8fb7d09
      Paolo Bonzini authored
      
      Switch from QemuOpts to keyval.  This enables the introduction
      of non-scalar machine properties, and JSON syntax in the future.
      
      For JSON syntax to be supported right now, we would have to
      consider what would happen if string-based dictionaries (produced by
      -M key=val) were to be merged with strongly-typed dictionaries
      (produced by -M {'key': 123}).
      
      The simplest way out is to never enter the situation, and only allow one
      -M option when JSON syntax is in use.  However, we want options such as
      -smp to become syntactic sugar for -M, and this is a problem; as soon
      as -smp becomes a shortcut for -M, QEMU would forbid using -M '{....}'
      together with -smp.  Therefore, allowing JSON syntax right now for -M
      would be a forward-compatibility nightmare and it would be impossible
      anyway to introduce -M incrementally in tools.
      
      Instead, support for JSON syntax is delayed until after the main
      options are converted to QOM compound properties.  These include -boot,
      -acpitable, -smbios, -m, -semihosting-config, -rtc and -fw_cfg.  Once JSON
      syntax is introduced, these options will _also_ be forbidden together
      with -M '{...}'.
      
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      d8fb7d09
    • Paolo Bonzini's avatar
      keyval: introduce keyval_parse_into · c445909e
      Paolo Bonzini authored
      
      Allow parsing multiple keyval sequences into the same dictionary.
      This will be used to simplify the parsing of the -M command line
      option, which is currently a .merge_lists = true QemuOpts group.
      
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      c445909e
    • Paolo Bonzini's avatar
      keyval: introduce keyval_merge · 9176e800
      Paolo Bonzini authored
      
      This patch introduces a function that merges two keyval-produced
      (or keyval-like) QDicts.  It can be used to emulate the behavior of
      .merge_lists = true QemuOpts groups, merging -readconfig sections and
      command-line options in a single QDict, and also to implement -set.
      
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      9176e800
    • Paolo Bonzini's avatar
      qom: export more functions for use with non-UserCreatable objects · 3bb69445
      Paolo Bonzini authored
      
      Machines and accelerators are not user-creatable but they are going
      to share similar command-line parsing machinery.  Export functions
      that will be used with -machine and -accel in softmmu/vl.c.
      
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      3bb69445
Loading