Skip to content
Snippets Groups Projects
  1. Oct 27, 2022
    • David Hildenbrand's avatar
      util: Make qemu_prealloc_mem() optionally consume a ThreadContext · e04a34e5
      David Hildenbrand authored
      
      ... and implement it under POSIX. When a ThreadContext is provided,
      create new threads via the context such that these new threads obtain a
      properly configured CPU affinity.
      
      Reviewed-by: default avatarMichal Privoznik <mprivozn@redhat.com>
      Message-Id: <20221014134720.168738-6-david@redhat.com>
      Signed-off-by: default avatarDavid Hildenbrand <david@redhat.com>
      e04a34e5
    • David Hildenbrand's avatar
      util: Add write-only "node-affinity" property for ThreadContext · 10218ae6
      David Hildenbrand authored
      
      Let's make it easier to pin threads created via a ThreadContext to
      all host CPUs currently belonging to a given set of host NUMA nodes --
      which is the common case.
      
      "node-affinity" is simply a shortcut for setting "cpu-affinity" manually
      to the list of host CPUs belonging to the set of host nodes. This property
      can only be written.
      
      A simple QEMU example to set the CPU affinity to host node 1 on a system
      with two nodes, 24 CPUs each, whereby odd-numbered host CPUs belong to
      host node 1:
          qemu-system-x86_64 -S \
            -object thread-context,id=tc1,node-affinity=1
      
      And we can query the cpu-affinity via HMP/QMP:
          (qemu) qom-get tc1 cpu-affinity
          [
              1,
              3,
              5,
              7,
              9,
              11,
              13,
              15,
              17,
              19,
              21,
              23,
              25,
              27,
              29,
              31,
              33,
              35,
              37,
              39,
              41,
              43,
              45,
              47
          ]
      
      We cannot query the node-affinity:
          (qemu) qom-get tc1 node-affinity
          Error: Insufficient permission to perform this operation
      
      But note that due to dynamic library loading this example will not work
      before we actually make use of thread_context_create_thread() in QEMU
      code, because the type will otherwise not get registered. We'll wire
      this up next to make it work.
      
      Note that if the host CPUs for a host node change due do CPU hot(un)plug
      CPU onlining/offlining (i.e., lscpu output changes) after the ThreadContext
      was started, the CPU affinity will not get updated.
      
      Reviewed-by: default avatarMichal Privoznik <mprivozn@redhat.com>
      Acked-by: default avatarMarkus Armbruster <armbru@redhat.com>
      Message-Id: <20221014134720.168738-5-david@redhat.com>
      Signed-off-by: default avatarDavid Hildenbrand <david@redhat.com>
      10218ae6
    • David Hildenbrand's avatar
      util: Introduce ThreadContext user-creatable object · e2de2c49
      David Hildenbrand authored
      
      Setting the CPU affinity of QEMU threads is a bit problematic, because
      QEMU doesn't always have permissions to set the CPU affinity itself,
      for example, with seccomp after initialized by QEMU:
          -sandbox enable=on,resourcecontrol=deny
      
      General information about CPU affinities can be found in the man page of
      taskset:
          CPU affinity is a scheduler property that "bonds" a process to a given
          set of CPUs on the system. The Linux scheduler will honor the given CPU
          affinity and the process will not run on any other CPUs.
      
      While upper layers are already aware of how to handle CPU affinities for
      long-lived threads like iothreads or vcpu threads, especially short-lived
      threads, as used for memory-backend preallocation, are more involved to
      handle. These threads are created on demand and upper layers are not even
      able to identify and configure them.
      
      Introduce the concept of a ThreadContext, that is essentially a thread
      used for creating new threads. All threads created via that context
      thread inherit the configured CPU affinity. Consequently, it's
      sufficient to create a ThreadContext and configure it once, and have all
      threads created via that ThreadContext inherit the same CPU affinity.
      
      The CPU affinity of a ThreadContext can be configured two ways:
      
      (1) Obtaining the thread id via the "thread-id" property and setting the
          CPU affinity manually (e.g., via taskset).
      
      (2) Setting the "cpu-affinity" property and letting QEMU try set the
          CPU affinity itself. This will fail if QEMU doesn't have permissions
          to do so anymore after seccomp was initialized.
      
      A simple QEMU example to set the CPU affinity to host CPU 0,1,6,7 would be:
          qemu-system-x86_64 -S \
            -object thread-context,id=tc1,cpu-affinity=0-1,cpu-affinity=6-7
      
      And we can query it via HMP/QMP:
          (qemu) qom-get tc1 cpu-affinity
          [
              0,
              1,
              6,
              7
          ]
      
      But note that due to dynamic library loading this example will not work
      before we actually make use of thread_context_create_thread() in QEMU
      code, because the type will otherwise not get registered. We'll wire
      this up next to make it work.
      
      In general, the interface behaves like pthread_setaffinity_np(): host
      CPU numbers that are currently not available are ignored; only host CPU
      numbers that are impossible with the current kernel will fail. If the
      list of host CPU numbers does not include a single CPU that is
      available, setting the CPU affinity will fail.
      
      A ThreadContext can be reused, simply by reconfiguring the CPU affinity.
      Note that the CPU affinity of previously created threads will not get
      adjusted.
      
      Reviewed-by: default avatarMichal Privoznik <mprivozn@redhat.com>
      Acked-by: default avatarMarkus Armbruster <armbru@redhat.com>
      Message-Id: <20221014134720.168738-4-david@redhat.com>
      Signed-off-by: default avatarDavid Hildenbrand <david@redhat.com>
      e2de2c49
    • David Hildenbrand's avatar
      util: Introduce qemu_thread_set_affinity() and qemu_thread_get_affinity() · 7730f32c
      David Hildenbrand authored
      
      Usually, we let upper layers handle CPU pinning, because
      pthread_setaffinity_np() (-> sched_setaffinity()) is blocked via
      seccomp when starting QEMU with
          -sandbox enable=on,resourcecontrol=deny
      
      However, we want to configure and observe the CPU affinity of threads
      from QEMU directly in some cases when the sandbox option is either not
      enabled or not active yet.
      
      So let's add a way to configure CPU pinning via
      qemu_thread_set_affinity() and obtain CPU affinity via
      qemu_thread_get_affinity() and implement them under POSIX using
      pthread_setaffinity_np() + pthread_getaffinity_np().
      
      Implementation under Windows is possible using SetProcessAffinityMask()
      + GetProcessAffinityMask(), however, that is left as future work.
      
      Reviewed-by: default avatarMichal Privoznik <mprivozn@redhat.com>
      Message-Id: <20221014134720.168738-3-david@redhat.com>
      Signed-off-by: default avatarDavid Hildenbrand <david@redhat.com>
      7730f32c
    • David Hildenbrand's avatar
      util: Cleanup and rename os_mem_prealloc() · 6556aadc
      David Hildenbrand authored
      
      Let's
      * give the function a "qemu_*" style name
      * make sure the parameters in the implementation match the prototype
      * rename smp_cpus to max_threads, which makes the semantics of that
        parameter clearer
      
      ... and add a function documentation.
      
      Reviewed-by: default avatarMichal Privoznik <mprivozn@redhat.com>
      Message-Id: <20221014134720.168738-2-david@redhat.com>
      Signed-off-by: default avatarDavid Hildenbrand <david@redhat.com>
      6556aadc
  2. Oct 24, 2022
  3. Oct 20, 2022
  4. Oct 18, 2022
    • Stefan Hajnoczi's avatar
      Merge tag 'for-upstream' of https://gitlab.com/bonzini/qemu into staging · 214a8da2
      Stefan Hajnoczi authored
      * configure: don't enable firmware for targets that are not built
      * configure: don't use strings(1)
      * scsi, target/i386: switch from device_legacy_reset() to device_cold_reset()
      * target/i386: AVX support for TCG
      * target/i386: fix SynIC SINT assertion failure on guest reset
      * target/i386: Use atomic operations for pte updates and other cleanups
      * tests/tcg: extend SSE tests to AVX
      * virtio-scsi: send "REPORTED LUNS CHANGED" sense data upon disk hotplug events
      
      # -----BEGIN PGP SIGNATURE-----
      #
      # iQFIBAABCAAyFiEE8TM4V0tmI4mGbHaCv/vSX3jHroMFAmNOlOcUHHBib256aW5p
      # QHJlZGhhdC5jb20ACgkQv/vSX3jHroNuvwgAj/Z5pI9KU33XiWKFR3bZf2lHh21P
      # xmTzNtPmnP1WHDY1DNug/UB+BLg3c+carpTf5n3B8aKI4X3FfxGSJvYlXy4BONFD
      # XqYMH3OZB5GaR8Wza9trNYjDs/9hOZus/0R6Hqdl/T38PlMjf8mmayULJIGdcFcJ
      # WJvITVntbcCwwbpyJbRC5BNigG8ZXTNRoKBgtFVGz6Ox+n0YydwKX5qU5J7xRfCU
      # lW41LjZ0Fk5lonH16+xuS4WD5EyrNt8cMKCGsxnyxhI7nehe/OGnYr9l+xZJclrh
      # inQlSwJv0IpUJcrGCI4Xugwux4Z7ZXv3JQ37FzsdZcv/ZXpGonXMeXNJ9A==
      # =o6x7
      # -----END PGP SIGNATURE-----
      # gpg: Signature made Tue 18 Oct 2022 07:58:31 EDT
      # 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
      
      * tag 'for-upstream' of https://gitlab.com/bonzini/qemu
      
      : (53 commits)
        target/i386: remove old SSE decoder
        target/i386: move 3DNow to the new decoder
        tests/tcg: extend SSE tests to AVX
        target/i386: Enable AVX cpuid bits when using TCG
        target/i386: implement VLDMXCSR/VSTMXCSR
        target/i386: implement XSAVE and XRSTOR of AVX registers
        target/i386: reimplement 0x0f 0x28-0x2f, add AVX
        target/i386: reimplement 0x0f 0x10-0x17, add AVX
        target/i386: reimplement 0x0f 0xc2, 0xc4-0xc6, add AVX
        target/i386: reimplement 0x0f 0x38, add AVX
        target/i386: Use tcg gvec ops for pmovmskb
        target/i386: reimplement 0x0f 0x3a, add AVX
        target/i386: clarify (un)signedness of immediates from 0F3Ah opcodes
        target/i386: reimplement 0x0f 0xd0-0xd7, 0xe0-0xe7, 0xf0-0xf7, add AVX
        target/i386: reimplement 0x0f 0x70-0x77, add AVX
        target/i386: reimplement 0x0f 0x78-0x7f, add AVX
        target/i386: reimplement 0x0f 0x50-0x5f, add AVX
        target/i386: reimplement 0x0f 0xd8-0xdf, 0xe8-0xef, 0xf8-0xff, add AVX
        target/i386: reimplement 0x0f 0x60-0x6f, add AVX
        target/i386: Introduce 256-bit vector helpers
        ...
      
      Signed-off-by: default avatarStefan Hajnoczi <stefanha@redhat.com>
      214a8da2
    • Stefan Hajnoczi's avatar
      Merge tag 'pull-ppc-20221017' of https://gitlab.com/danielhb/qemu into staging · 2c65091f
      Stefan Hajnoczi authored
      ppc patch queue for 2022-10-18:
      
      This queue contains improvements in the e500 and ppc4xx boards, changes
      in the maintainership of the project, a new QMP/HMP command and bug
      fixes:
      
      - Cedric is stepping back from qemu-ppc maintainership;
      - ppc4xx_sdram: QOMification and clean ups;
      - e500: add new types of flash and clean ups;
      - QMP/HMP: introduce dumpdtb command;
      - spapr_pci, booke doorbell interrupt and xvcmp* bit fixes;
      
      The 'dumpdtb' implementation is also making changes to RISC-V files that
      were acked by Alistair Francis and are being included in this queue.
      
      # -----BEGIN PGP SIGNATURE-----
      #
      # iHUEABYKAB0WIQQX6/+ZI9AYAK8oOBk82cqW3gMxZAUCY02qEgAKCRA82cqW3gMx
      # ZIadAQCYY9f+NFrSJBm3z4JjUaP+GmbgEjibjZW05diyKwbqzQEAjE1KXFCcd40D
      # 3Brs2Dm4YruaJCwb68vswVQAYteXaQ8=
      # =hl94
      # -----END PGP SIGNATURE-----
      # gpg: Signature made Mon 17 Oct 2022 15:16:34 EDT
      # gpg:                using EDDSA key 17EBFF9923D01800AF2838193CD9CA96DE033164
      # gpg: Good signature from "Daniel Henrique Barboza <danielhb413@gmail.com>" [unknown]
      # gpg: WARNING: This key is not certified with a trusted signature!
      # gpg:          There is no indication that the signature belongs to the owner.
      # Primary key fingerprint: 17EB FF99 23D0 1800 AF28  3819 3CD9 CA96 DE03 3164
      
      * tag 'pull-ppc-20221017' of https://gitlab.com/danielhb/qemu
      
      : (38 commits)
        hw/riscv: set machine->fdt in spike_board_init()
        hw/riscv: set machine->fdt in sifive_u_machine_init()
        hw/ppc: set machine->fdt in spapr machine
        hw/ppc: set machine->fdt in pnv_reset()
        hw/ppc: set machine->fdt in pegasos2_machine_reset()
        hw/ppc: set machine->fdt in xilinx_load_device_tree()
        hw/ppc: set machine->fdt in sam460ex_load_device_tree()
        hw/ppc: set machine->fdt in bamboo_load_device_tree()
        hw/nios2: set machine->fdt in nios2_load_dtb()
        qmp/hmp, device_tree.c: introduce dumpdtb
        hw/ppc/spapr_pci.c: Use device_cold_reset() rather than device_legacy_reset()
        target/ppc: Fix xvcmp* clearing FI bit
        hw/ppc/e500: Remove if statement which is now always true
        hw/ppc/mpc8544ds: Add platform bus
        hw/ppc/mpc8544ds: Rename wrongly named method
        hw/ppc/e500: Reduce usage of sysbus API
        docs/system/ppc/ppce500: Add heading for networking chapter
        hw/gpio/meson: Introduce dedicated config switch for hw/gpio/mpc8xxx
        hw/ppc/meson: Allow e500 boards to be enabled separately
        ppc440_uc.c: Remove unneeded parenthesis
        ...
      
      Signed-off-by: default avatarStefan Hajnoczi <stefanha@redhat.com>
      2c65091f
    • Paolo Bonzini's avatar
      target/i386: remove old SSE decoder · 653fad24
      Paolo Bonzini authored
      
      With all SSE (and AVX!) instructions now implemented in disas_insn_new,
      it's possible to remove gen_sse, as well as the helpers for instructions
      that now use gvec.
      
      Reviewed-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      653fad24
    • Paolo Bonzini's avatar
      target/i386: move 3DNow to the new decoder · 71a0891d
      Paolo Bonzini authored
      
      This adds another kind of weirdness when you thought you had seen it all:
      an opcode byte that comes _after_ the address, not before.  It's not
      worth adding a new X86_SPECIAL_* constant for it, but it's actually
      not unlike VCMP; so, forgive me for exploiting the similarity and just
      deciding to dispatch to the right gen_helper_* call in a single code
      generation function.
      
      In fact, the old decoder had a bug where s->rip_offset should have
      been set to 1 for 3DNow! instructions, and it's fixed now.
      
      Reviewed-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      71a0891d
    • Paolo Bonzini's avatar
      tests/tcg: extend SSE tests to AVX · 0339ddfa
      Paolo Bonzini authored
      
      Extracted from a patch by Paul Brook <paul@nowt.org>.
      
      Reviewed-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      0339ddfa
    • Paul Brook's avatar
      target/i386: Enable AVX cpuid bits when using TCG · 2f8a21d8
      Paul Brook authored
      
      Include AVX, AVX2 and VAES in the guest cpuid features supported by TCG.
      
      Signed-off-by: default avatarPaul Brook <paul@nowt.org>
      Message-Id: <20220424220204.2493824-40-paul@nowt.org>
      Reviewed-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      2f8a21d8
    • Paolo Bonzini's avatar
      target/i386: implement VLDMXCSR/VSTMXCSR · 57f6bba0
      Paolo Bonzini authored
      
      These are exactly the same as the non-VEX version, but one has to be careful
      that only VEX.L=0 is allowed.
      
      Reviewed-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      57f6bba0
    • Paolo Bonzini's avatar
    • Paolo Bonzini's avatar
      target/i386: reimplement 0x0f 0x28-0x2f, add AVX · f8d19eec
      Paolo Bonzini authored
      
      Here the code is a bit uglier due to the truncation and extension
      of registers to and from 32-bit.  There is also a mistake in the
      manual with respect to the size of the memory operand of CVTPS2PI
      and CVTTPS2PI, reported by Ricky Zhou.
      
      Reviewed-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      f8d19eec
Loading