[PULL v3 00/10] Misc patches for 2023-02-08

Paolo Bonzini posted 10 patches 1 year, 2 months ago
Only 0 patches received!
block/iscsi.c                    |   1 +
include/disas/dis-asm.h          |   8 --
include/qemu/bswap.h             |   8 --
include/qemu/envlist.h           |   8 --
include/qemu/rcu.h               |   8 --
include/qemu/rcu_queue.h         |   8 --
include/qemu/uri.h               |   7 --
scripts/meson-buildoptions.py    |   7 +-
scripts/meson-buildoptions.sh    |   2 +-
softmmu/vl.c                     |  15 ++-
target/i386/tcg/emit.c.inc       |  45 +++++----
tests/qtest/libqtest.c           | 158 +++++++++++++++++--------------
tests/tcg/i386/Makefile.target   |   6 +-
tests/tcg/i386/test-i386-adcox.c |  75 +++++++++++++++
tests/tcg/i386/test-i386-bmi2.c  | 194 +++++++++++++++++++++------------------
15 files changed, 316 insertions(+), 234 deletions(-)
create mode 100644 tests/tcg/i386/test-i386-adcox.c
[PULL v3 00/10] Misc patches for 2023-02-08
Posted by Paolo Bonzini 1 year, 2 months ago
The following changes since commit 3b33ae48ec28e1e0d1bc28a85c7423724bcb1a2c:

  Merge tag 'block-pull-request' of https://gitlab.com/stefanha/qemu into staging (2023-02-09 15:29:14 +0000)

are available in the Git repository at:

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

for you to fetch changes up to 12008ff748d8cfb62fb937559c0fd844371bab5e:

  libqtest: ensure waitpid() is only called once (2023-02-11 09:20:38 +0100)

----------------------------------------------------------------
* block/iscsi: fix double-free on BUSY or similar statuses
* catch [accel] entry without accelerator
* target/i386: various fixes for BMI and ADX instructions
* make the contents of meson-buildoptions.sh stable

----------------------------------------------------------------
v2->v3: dropped the test that failed on the BSDs, because it could not be
        reproduced on a VM. :(

Paolo Bonzini (7):
      build: make meson-buildoptions.sh stable
      remove unnecessary extern "C" blocks
      block/iscsi: fix double-free on BUSY or similar statuses
      vl: catch [accel] entry without accelerator
      target/i386: fix ADOX followed by ADCX
      libqtest: split qtest_spawn_qemu function
      libqtest: ensure waitpid() is only called once

Richard Henderson (3):
      tests/tcg/i386: Introduce and use reg_t consistently
      target/i386: Fix BEXTR instruction
      target/i386: Fix C flag for BLSI, BLSMSK, BLSR

 block/iscsi.c                    |   1 +
 include/disas/dis-asm.h          |   8 --
 include/qemu/bswap.h             |   8 --
 include/qemu/envlist.h           |   8 --
 include/qemu/rcu.h               |   8 --
 include/qemu/rcu_queue.h         |   8 --
 include/qemu/uri.h               |   7 --
 scripts/meson-buildoptions.py    |   7 +-
 scripts/meson-buildoptions.sh    |   2 +-
 softmmu/vl.c                     |  15 ++-
 target/i386/tcg/emit.c.inc       |  45 +++++----
 tests/qtest/libqtest.c           | 158 +++++++++++++++++--------------
 tests/tcg/i386/Makefile.target   |   6 +-
 tests/tcg/i386/test-i386-adcox.c |  75 +++++++++++++++
 tests/tcg/i386/test-i386-bmi2.c  | 194 +++++++++++++++++++++------------------
 15 files changed, 316 insertions(+), 234 deletions(-)
 create mode 100644 tests/tcg/i386/test-i386-adcox.c
-- 
2.39.1
Re: [PULL v3 00/10] Misc patches for 2023-02-08
Posted by Peter Maydell 1 year, 2 months ago
On Wed, 15 Feb 2023 at 18:15, Paolo Bonzini <pbonzini@redhat.com> wrote:
>
> The following changes since commit 3b33ae48ec28e1e0d1bc28a85c7423724bcb1a2c:
>
>   Merge tag 'block-pull-request' of https://gitlab.com/stefanha/qemu into staging (2023-02-09 15:29:14 +0000)
>
> are available in the Git repository at:
>
>   https://gitlab.com/bonzini/qemu.git tags/for-upstream
>
> for you to fetch changes up to 12008ff748d8cfb62fb937559c0fd844371bab5e:
>
>   libqtest: ensure waitpid() is only called once (2023-02-11 09:20:38 +0100)
>
> ----------------------------------------------------------------
> * block/iscsi: fix double-free on BUSY or similar statuses
> * catch [accel] entry without accelerator
> * target/i386: various fixes for BMI and ADX instructions
> * make the contents of meson-buildoptions.sh stable
>
> ----------------------------------------------------------------
> v2->v3: dropped the test that failed on the BSDs, because it could not be
>         reproduced on a VM. :(
>

Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/8.0
for any user-visible changes.

-- PMM