[Qemu-devel] [PULL 0/4] Late blockjob / coroutine patches for -rc2

Jeff Cody posted 4 patches 6 years, 4 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20171121170350.31290-1-jcody@redhat.com
Test checkpatch passed
Test docker failed
Test ppc passed
Test s390x passed
blockjob.c                     |  7 ++-
include/block/blockjob_int.h   |  3 +-
include/qemu/coroutine_int.h   | 13 ++++--
tests/qemu-iotests/200         | 99 ++++++++++++++++++++++++++++++++++++++++++
tests/qemu-iotests/200.out     | 14 ++++++
tests/qemu-iotests/common.qemu |  8 +++-
tests/qemu-iotests/group       |  1 +
util/async.c                   | 13 ++++++
util/qemu-coroutine-sleep.c    | 12 +++++
util/qemu-coroutine.c          | 14 ++++++
10 files changed, 177 insertions(+), 7 deletions(-)
create mode 100755 tests/qemu-iotests/200
create mode 100644 tests/qemu-iotests/200.out
[Qemu-devel] [PULL 0/4] Late blockjob / coroutine patches for -rc2
Posted by Jeff Cody 6 years, 4 months ago
The following changes since commit 7c3d1917fd7a3de906170fa3d6d3d4c5918b1e49:

  build: disarm the TCG unit test trap (2017-11-21 15:42:47 +0000)

are available in the git repository at:

  git://github.com/codyprime/qemu-kvm-jtc.git tags/block-pull-request

for you to fetch changes up to d975301dc8ae56fb3154348878e47a6211843c0b:

  qemu-iotest: add test for blockjob coroutine race condition (2017-11-21 11:58:12 -0500)

----------------------------------------------------------------
Late fix for blockjob / coroutine segfaults w/iothreads
----------------------------------------------------------------

Jeff Cody (4):
  blockjob: do not allow coroutine double entry or
    entry-after-completion
  coroutine: abort if we try to schedule or enter a pending coroutine
  qemu-iotests: add option in common.qemu for mismatch only
  qemu-iotest: add test for blockjob coroutine race condition

 blockjob.c                     |  7 ++-
 include/block/blockjob_int.h   |  3 +-
 include/qemu/coroutine_int.h   | 13 ++++--
 tests/qemu-iotests/200         | 99 ++++++++++++++++++++++++++++++++++++++++++
 tests/qemu-iotests/200.out     | 14 ++++++
 tests/qemu-iotests/common.qemu |  8 +++-
 tests/qemu-iotests/group       |  1 +
 util/async.c                   | 13 ++++++
 util/qemu-coroutine-sleep.c    | 12 +++++
 util/qemu-coroutine.c          | 14 ++++++
 10 files changed, 177 insertions(+), 7 deletions(-)
 create mode 100755 tests/qemu-iotests/200
 create mode 100644 tests/qemu-iotests/200.out

-- 
2.9.5


Re: [Qemu-devel] [PULL 0/4] Late blockjob / coroutine patches for -rc2
Posted by Peter Maydell 6 years, 4 months ago
On 21 November 2017 at 17:03, Jeff Cody <jcody@redhat.com> wrote:
> The following changes since commit 7c3d1917fd7a3de906170fa3d6d3d4c5918b1e49:
>
>   build: disarm the TCG unit test trap (2017-11-21 15:42:47 +0000)
>
> are available in the git repository at:
>
>   git://github.com/codyprime/qemu-kvm-jtc.git tags/block-pull-request
>
> for you to fetch changes up to d975301dc8ae56fb3154348878e47a6211843c0b:
>
>   qemu-iotest: add test for blockjob coroutine race condition (2017-11-21 11:58:12 -0500)
>
> ----------------------------------------------------------------
> Late fix for blockjob / coroutine segfaults w/iothreads
> ----------------------------------------------------------------
>

Applied, thanks.

-- PMM