[PULL 00/13] Misc bugfix patches for 2021-06-04

Paolo Bonzini posted 13 patches 2 years, 10 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/next-importer-push tags/patchew/20210604151745.310318-1-pbonzini@redhat.com
Maintainers: Laurent Vivier <lvivier@redhat.com>, Kevin Wolf <kwolf@redhat.com>, Richard Henderson <richard.henderson@linaro.org>, Marcelo Tosatti <mtosatti@redhat.com>, Max Reitz <mreitz@redhat.com>, Brad Smith <brad@comstyle.com>, Thomas Huth <thuth@redhat.com>, Paolo Bonzini <pbonzini@redhat.com>, Eduardo Habkost <ehabkost@redhat.com>, Markus Armbruster <armbru@redhat.com>, Fam Zheng <fam@euphon.net>
block/meson.build              |  18 +++----
include/block/qdict.h          |   2 -
include/qapi/qmp/qdict.h       |   3 ++
include/qemu/config-file.h     |   7 ++-
meson.build                    |   4 +-
softmmu/vl.c                   | 105 +++++++++++++++++++++++++++++------------
target/i386/cpu.c              |  89 ++++++++++++++++++++++------------
target/i386/kvm/kvm-cpu.c      |  12 ++++-
target/i386/tcg/seg_helper.c   |  31 ++++++------
target/i386/tcg/translate.c    |   1 +
tests/qtest/virtio-scsi-test.c |  51 ++++++++++++++++++++
util/oslib-posix.c             |  11 -----
util/qemu-config.c             |  98 ++++++++++++++++++++++++++------------
13 files changed, 298 insertions(+), 134 deletions(-)
[PULL 00/13] Misc bugfix patches for 2021-06-04
Posted by Paolo Bonzini 2 years, 10 months ago
The following changes since commit 5a95f5ce3cd5842cc8f61a91ecd4fb4e8d10104f:

  Merge remote-tracking branch 'remotes/rth-gitlab/tags/pull-fpu-20210603' into staging (2021-06-04 10:04:11 +0100)

are available in the Git repository at:

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

for you to fetch changes up to 49e987695a1873a769a823604f9065aa88e00c55:

  vl: plug -object back into -readconfig (2021-06-04 13:50:04 +0200)

----------------------------------------------------------------
* OpenBSD cleanup (Brad)
* fixes for the i386 accel/cpu refactoring (Claudio)
* unmap test for emulated SCSI (Kit)
* fix for iscsi module (myself)
* fix for -readconfig of objects (myself)
* fixes for x86 16-bit task switching (myself)
* fix for x86 MOV from/to CR8 (Richard)

----------------------------------------------------------------
Brad Smith (1):
      oslib-posix: Remove OpenBSD workaround for fcntl("/dev/null", F_SETFL, O_NONBLOCK) failure

Claudio Fontana (2):
      i386: reorder call to cpu_exec_realizefn
      i386: run accel_cpu_instance_init as post_init

Kit Westneat (1):
      tests/qtest/virtio-scsi-test: add unmap large LBA with 4k blocks test

Paolo Bonzini (8):
      meson: allow optional dependencies for block modules
      iscsi: link libm into the module
      target/i386: tcg: fix segment register offsets for 16-bit TSS
      target/i386: tcg: fix loading of registers from 16-bit TSS
      target/i386: tcg: fix switching from 16-bit to 32-bit tasks or vice versa
      qemu-config: parse configuration files to a QDict
      vl: plumb keyval-based options into -readconfig
      vl: plug -object back into -readconfig

Richard Henderson (1):
      target/i386: Fix decode of cr8

 block/meson.build              |  18 +++----
 include/block/qdict.h          |   2 -
 include/qapi/qmp/qdict.h       |   3 ++
 include/qemu/config-file.h     |   7 ++-
 meson.build                    |   4 +-
 softmmu/vl.c                   | 105 +++++++++++++++++++++++++++++------------
 target/i386/cpu.c              |  89 ++++++++++++++++++++++------------
 target/i386/kvm/kvm-cpu.c      |  12 ++++-
 target/i386/tcg/seg_helper.c   |  31 ++++++------
 target/i386/tcg/translate.c    |   1 +
 tests/qtest/virtio-scsi-test.c |  51 ++++++++++++++++++++
 util/oslib-posix.c             |  11 -----
 util/qemu-config.c             |  98 ++++++++++++++++++++++++++------------
 13 files changed, 298 insertions(+), 134 deletions(-)
-- 
2.31.1


Re: [PULL 00/13] Misc bugfix patches for 2021-06-04
Posted by Peter Maydell 2 years, 10 months ago
On Fri, 4 Jun 2021 at 16:19, Paolo Bonzini <pbonzini@redhat.com> wrote:
>
> The following changes since commit 5a95f5ce3cd5842cc8f61a91ecd4fb4e8d10104f:
>
>   Merge remote-tracking branch 'remotes/rth-gitlab/tags/pull-fpu-20210603' into staging (2021-06-04 10:04:11 +0100)
>
> are available in the Git repository at:
>
>   https://gitlab.com/bonzini/qemu.git tags/for-upstream
>
> for you to fetch changes up to 49e987695a1873a769a823604f9065aa88e00c55:
>
>   vl: plug -object back into -readconfig (2021-06-04 13:50:04 +0200)
>
> ----------------------------------------------------------------
> * OpenBSD cleanup (Brad)
> * fixes for the i386 accel/cpu refactoring (Claudio)
> * unmap test for emulated SCSI (Kit)
> * fix for iscsi module (myself)
> * fix for -readconfig of objects (myself)
> * fixes for x86 16-bit task switching (myself)
> * fix for x86 MOV from/to CR8 (Richard)
>


Applied, thanks.

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

-- PMM