From: Kevin Wolf <kwolf@redhat.com>
To: qemu-block@nongnu.org
Cc: kwolf@redhat.com, peter.maydell@linaro.org, qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 00/13] Block layer patches
Date: Fri, 19 Jul 2019 15:43:32 +0200 [thread overview]
Message-ID: <20190719134345.23526-1-kwolf@redhat.com> (raw)
The following changes since commit 0274f45bdef73283f2c213610f11d4e5dcba43b6:
Merge remote-tracking branch 'remotes/vivier2/tags/linux-user-for-4.1-pull-request' into staging (2019-07-19 09:44:43 +0100)
are available in the Git repository at:
git://repo.or.cz/qemu/kevin.git tags/for-upstream
for you to fetch changes up to 49278ec065da3fbf90f7effcde3b39ac606b2e9e:
iotests: Test quitting with job on throttled node (2019-07-19 15:17:55 +0200)
----------------------------------------------------------------
Block layer patches:
- block: Fix forbidden use of polling in drained_end
- block: Don't wait for I/O throttling while exiting QEMU
- iotests: Use read-zeroes for the null driver to be Valgrind-friendly
----------------------------------------------------------------
Andrey Shinkevich (1):
iotests: Set read-zeroes on in null block driver for Valgrind
Max Reitz (12):
block: Introduce BdrvChild.parent_quiesce_counter
tests: Add job commit by drained_end test
block: Add @drained_end_counter
block: Make bdrv_parent_drained_[^_]*() static
tests: Lock AioContexts in test-block-iothread
block: Do not poll in bdrv_do_drained_end()
tests: Extend commit by drained_end test
block: Loop unsafely in bdrv*drained_end()
iotests: Add @has_quit to vm.shutdown()
iotests: Test commit with a filter on the chain
vl: Drain before (block) job cancel when quitting
iotests: Test quitting with job on throttled node
include/block/block.h | 42 ++++++++----
include/block/block_int.h | 15 ++++-
block.c | 52 ++++++++++-----
block/block-backend.c | 6 +-
block/io.c | 134 +++++++++++++++++++++++++++----------
blockjob.c | 2 +-
tests/test-bdrv-drain.c | 147 ++++++++++++++++++++++++++++++++++++++++
tests/test-block-iothread.c | 40 +++++++----
vl.c | 11 +++
python/qemu/machine.py | 5 +-
tests/qemu-iotests/040 | 40 ++++++++++-
tests/qemu-iotests/040.out | 4 +-
tests/qemu-iotests/051 | 10 +--
tests/qemu-iotests/051.pc.out | 10 +--
tests/qemu-iotests/093 | 9 +--
tests/qemu-iotests/136 | 1 +
tests/qemu-iotests/186 | 20 +++---
tests/qemu-iotests/186.out | 152 +++++++++++++++++++++---------------------
tests/qemu-iotests/218 | 55 ++++++++++++++-
tests/qemu-iotests/218.out | 4 ++
tests/qemu-iotests/227 | 4 +-
tests/qemu-iotests/227.out | 4 +-
tests/qemu-iotests/238 | 2 +-
tests/qemu-iotests/240 | 8 +--
tests/qemu-iotests/255 | 2 +-
25 files changed, 576 insertions(+), 203 deletions(-)
next reply other threads:[~2019-07-19 13:44 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-07-19 13:43 Kevin Wolf [this message]
2019-07-19 13:43 ` [Qemu-devel] [PULL 01/13] iotests: Set read-zeroes on in null block driver for Valgrind Kevin Wolf
2019-07-24 7:18 ` Christian Borntraeger
2019-07-24 7:30 ` Andrey Shinkevich
2019-07-24 7:33 ` Christian Borntraeger
2019-07-24 7:37 ` Andrey Shinkevich
2019-07-24 7:38 ` Kevin Wolf
2019-07-24 7:57 ` Andrey Shinkevich
2019-07-24 8:05 ` Kevin Wolf
2019-07-24 8:23 ` Andrey Shinkevich
2019-07-19 13:43 ` [Qemu-devel] [PULL 02/13] block: Introduce BdrvChild.parent_quiesce_counter Kevin Wolf
2019-07-19 13:43 ` [Qemu-devel] [PULL 03/13] tests: Add job commit by drained_end test Kevin Wolf
2019-07-19 13:43 ` [Qemu-devel] [PULL 04/13] block: Add @drained_end_counter Kevin Wolf
2019-07-19 13:43 ` [Qemu-devel] [PULL 05/13] block: Make bdrv_parent_drained_[^_]*() static Kevin Wolf
2019-07-19 13:43 ` [Qemu-devel] [PULL 06/13] tests: Lock AioContexts in test-block-iothread Kevin Wolf
2019-07-19 13:43 ` [Qemu-devel] [PULL 07/13] block: Do not poll in bdrv_do_drained_end() Kevin Wolf
2019-07-19 13:43 ` [Qemu-devel] [PULL 08/13] tests: Extend commit by drained_end test Kevin Wolf
2019-07-19 13:43 ` [Qemu-devel] [PULL 09/13] block: Loop unsafely in bdrv*drained_end() Kevin Wolf
2019-07-19 13:43 ` [Qemu-devel] [PULL 10/13] iotests: Add @has_quit to vm.shutdown() Kevin Wolf
2019-07-19 13:43 ` [Qemu-devel] [PULL 11/13] iotests: Test commit with a filter on the chain Kevin Wolf
2019-07-19 13:43 ` [Qemu-devel] [PULL 12/13] vl: Drain before (block) job cancel when quitting Kevin Wolf
2019-07-19 13:43 ` [Qemu-devel] [PULL 13/13] iotests: Test quitting with job on throttled node Kevin Wolf
2019-07-22 9:11 ` [Qemu-devel] [PULL 00/13] Block layer patches Peter Maydell
-- strict thread matches above, loose matches on Subject: below --
2018-11-22 16:54 Kevin Wolf
2018-11-22 17:19 ` Peter Maydell
2018-11-23 10:52 ` no-reply
2018-07-30 15:09 Kevin Wolf
2018-07-31 9:02 ` Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190719134345.23526-1-kwolf@redhat.com \
--to=kwolf@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.