From: Stefan Hajnoczi <stefanha@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>,
Stefan Hajnoczi <stefanha@redhat.com>
Subject: [Qemu-devel] [PULL v3 00/38] Block patches
Date: Tue, 13 Jan 2015 13:47:38 +0000 [thread overview]
Message-ID: <1421156896-11599-1-git-send-email-stefanha@redhat.com> (raw)
The following changes since commit 7d5ad15d17f26dd4f9ff5f3491828bc34e74f28c:
Merge remote-tracking branch 'remotes/stefanha/tags/net-pull-request' into staging (2015-01-12 11:13:24 +0000)
are available in the git repository at:
git://github.com/stefanha/qemu.git tags/block-pull-request
for you to fetch changes up to 07d31d07f4b28a61b65cec95da69851c675f20b9:
NVMe: Set correct VS Value for 1.1 Compliant Controllers (2015-01-13 13:43:29 +0000)
----------------------------------------------------------------
----------------------------------------------------------------
Alex Friedman (1):
nvme: Fix get/set number of queues feature
Anubhav Rakshit (1):
NVMe: Set correct VS Value for 1.1 Compliant Controllers
Chrysostomos Nanakos (1):
MAINTAINERS: Update email addresses for Chrysostomos Nanakos
Fam Zheng (13):
qemu-iotests: Remove 091 from quick group
qemu-iotests: Speed up make check-block
qapi: Fix document for BlockStats.node-name
qapi: Comment version info in TransactionAction
qmp: Add command 'blockdev-backup'
block: Add blockdev-backup to transaction
qemu-iotests: Test blockdev-backup in 055
.gitignore: Ignore generated "common.env"
qemu-iotests: Replace "/bin/true" with "true"
qemu-iotests: Add "_supported_os Linux" to 058
qemu-iotests: Add supported os parameter for python tests
block: Split BLOCK_OP_TYPE_COMMIT to BLOCK_OP_TYPE_COMMIT_{SOURCE,
TARGET}
MAINTAINERS: Add migration/block* to block subsystem
John Snow (1):
ide: Implement VPD response for ATAPI
Marc Marí (1):
libqos: Convert malloc-pc allocator to a generic allocator
Max Reitz (7):
checkpatch: Brace handling on multi-line condition
block: Get full backing filename from string
block: JSON filenames and relative backing files
block: Relative backing file for image creation
block/vmdk: Relative backing file for creation
iotests: Add test for relative backing file names
iotests: Filter out "I/O thread spun..." warning
Paolo Bonzini (9):
block: mark AioContext as recursive
block: do not allocate an iovec per read of a growable/zero_after_eof
BDS
block: replace g_new0 with g_new for bottom half allocation.
coroutine-ucontext: use __thread
qemu-thread: add per-thread atexit functions
test-coroutine: avoid overflow on 32-bit systems
QSLIST: add lock-free operations
coroutine: rewrite pool to avoid mutex
coroutine: drop qemu_coroutine_adjust_pool_size
Peter Lieven (2):
coroutine: try harder not to delete coroutines
block: limited request size in write zeroes unsupported path
Vladimir Sementsov-Ogievskiy (2):
block: fix spoiling all dirty bitmaps by mirror and migration
migration/block: fix pending() return value
.gitignore | 1 +
MAINTAINERS | 2 +-
async.c | 11 +-
block.c | 92 ++++++++++---
block/backup.c | 28 ++++
block/block-backend.c | 4 -
block/mirror.c | 11 +-
block/qapi.c | 7 +-
block/vmdk.c | 13 +-
blockdev.c | 139 ++++++++++++++++++-
coroutine-ucontext.c | 69 +++-------
hw/block/dataplane/virtio-blk.c | 3 +-
hw/block/nvme.c | 8 +-
hw/ide/atapi.c | 111 ++++++++++++++--
hw/ide/internal.h | 1 +
include/block/block.h | 15 ++-
include/block/coroutine.h | 10 --
include/qemu/queue.h | 15 ++-
include/qemu/thread.h | 4 +
migration/block.c | 9 +-
qapi-schema.json | 8 ++
qapi/block-core.json | 56 +++++++-
qemu-coroutine.c | 103 +++++++-------
qmp-commands.hx | 42 ++++++
scripts/checkpatch.pl | 13 +-
tests/Makefile | 2 +-
tests/libqos/malloc-pc.c | 280 +--------------------------------------
tests/libqos/malloc-pc.h | 11 +-
tests/libqos/malloc.c | 270 +++++++++++++++++++++++++++++++++++++
tests/libqos/malloc.h | 45 ++++---
tests/qemu-iotests-quick.sh | 2 +-
tests/qemu-iotests/055 | 211 +++++++++++++++++++++++------
tests/qemu-iotests/055.out | 4 +-
tests/qemu-iotests/058 | 1 +
tests/qemu-iotests/067 | 3 +-
tests/qemu-iotests/071 | 2 +-
tests/qemu-iotests/071.out | 8 +-
tests/qemu-iotests/081 | 2 +-
tests/qemu-iotests/087 | 3 +-
tests/qemu-iotests/087.out | 1 -
tests/qemu-iotests/099 | 2 +-
tests/qemu-iotests/110 | 94 +++++++++++++
tests/qemu-iotests/110.out | 19 +++
tests/qemu-iotests/check | 1 +
tests/qemu-iotests/common.config | 2 +-
tests/qemu-iotests/common.filter | 3 +-
tests/qemu-iotests/common.rc | 2 +-
tests/qemu-iotests/group | 3 +-
tests/qemu-iotests/iotests.py | 5 +-
tests/test-coroutine.c | 2 +-
util/qemu-thread-posix.c | 37 ++++++
util/qemu-thread-win32.c | 48 +++++--
52 files changed, 1292 insertions(+), 546 deletions(-)
create mode 100644 tests/libqos/malloc.c
create mode 100755 tests/qemu-iotests/110
create mode 100644 tests/qemu-iotests/110.out
--
2.1.0
next reply other threads:[~2015-01-13 13:48 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-13 13:47 Stefan Hajnoczi [this message]
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 01/38] qemu-iotests: Remove 091 from quick group Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 02/38] qemu-iotests: Speed up make check-block Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 03/38] block: mark AioContext as recursive Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 04/38] block: do not allocate an iovec per read of a growable/zero_after_eof BDS Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 05/38] block: replace g_new0 with g_new for bottom half allocation Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 06/38] checkpatch: Brace handling on multi-line condition Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 07/38] block: Get full backing filename from string Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 08/38] block: JSON filenames and relative backing files Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 09/38] block: Relative backing file for image creation Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 10/38] block/vmdk: Relative backing file for creation Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 11/38] iotests: Add test for relative backing file names Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 12/38] qapi: Fix document for BlockStats.node-name Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 13/38] block: fix spoiling all dirty bitmaps by mirror and migration Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 14/38] qapi: Comment version info in TransactionAction Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 15/38] qmp: Add command 'blockdev-backup' Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 16/38] block: Add blockdev-backup to transaction Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 17/38] qemu-iotests: Test blockdev-backup in 055 Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 18/38] iotests: Filter out "I/O thread spun..." warning Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 19/38] migration/block: fix pending() return value Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 20/38] libqos: Convert malloc-pc allocator to a generic allocator Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 21/38] .gitignore: Ignore generated "common.env" Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 22/38] qemu-iotests: Replace "/bin/true" with "true" Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 23/38] qemu-iotests: Add "_supported_os Linux" to 058 Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 24/38] qemu-iotests: Add supported os parameter for python tests Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 25/38] coroutine-ucontext: use __thread Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 26/38] qemu-thread: add per-thread atexit functions Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 27/38] test-coroutine: avoid overflow on 32-bit systems Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 28/38] QSLIST: add lock-free operations Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 29/38] coroutine: rewrite pool to avoid mutex Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 30/38] coroutine: drop qemu_coroutine_adjust_pool_size Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 31/38] coroutine: try harder not to delete coroutines Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 32/38] block: limited request size in write zeroes unsupported path Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 33/38] block: Split BLOCK_OP_TYPE_COMMIT to BLOCK_OP_TYPE_COMMIT_{SOURCE, TARGET} Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 34/38] ide: Implement VPD response for ATAPI Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 35/38] nvme: Fix get/set number of queues feature Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 36/38] MAINTAINERS: Update email addresses for Chrysostomos Nanakos Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 37/38] MAINTAINERS: Add migration/block* to block subsystem Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 38/38] NVMe: Set correct VS Value for 1.1 Compliant Controllers Stefan Hajnoczi
2015-01-13 14:37 ` [Qemu-devel] [PULL v3 00/38] Block patches 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=1421156896-11599-1-git-send-email-stefanha@redhat.com \
--to=stefanha@redhat.com \
--cc=peter.maydell@linaro.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).