qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Kevin Wolf <kwolf@redhat.com>
To: qemu-devel@nongnu.org
Cc: kwolf@redhat.com
Subject: [Qemu-devel] [PULL 00/29] Block patches
Date: Fri, 22 Aug 2014 16:51:24 +0200	[thread overview]
Message-ID: <1408719113-5316-1-git-send-email-kwolf@redhat.com> (raw)

The following changes since commit 302fa283789a2f9b1199c327047cfad2258a23a2:

  Revert "memory: Use canonical path component as the name" (2014-08-19 20:05:46 +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 bd39e6ed0b88a1473c652c97e731a156cccf16e2:

  qemu-img: Allow cache mode specification for amend (2014-08-22 14:54:48 +0200)

----------------------------------------------------------------
Block patches

----------------------------------------------------------------
Fam Zheng (1):
      blkdebug: Delete BH in bdrv_aio_cancel

Kevin Wolf (1):
      qemu-iotests: Fix 028 reference output for qed

Maria Kustova (2):
      runner: Add an argument for test duration
      runner: Kill a program under test by time-out

Markus Armbruster (5):
      block: Use g_new() & friends where that makes obvious sense
      block: Use g_new() & friends to avoid multiplying sizes
      qemu-io-cmds: g_renew() can't fail, bury dead error handling
      block: Drop some superfluous casts from void *
      vmdk: Use bdrv_nb_sectors() where sectors, not bytes are wanted

Max Reitz (12):
      qcow2: Constant cache size in bytes
      qcow2: Use g_try_new0() for cache array
      qcow2: Add runtime options for cache sizes
      iotests: Add test for qcow2's cache options
      block: Add bdrv_refresh_filename()
      blkdebug: Implement bdrv_refresh_filename()
      blkverify: Implement bdrv_refresh_filename()
      nbd: Implement bdrv_refresh_filename()
      quorum: Implement bdrv_refresh_filename()
      iotests: Add test for image filename construction
      qemu-img: Allow source cache mode specification
      qemu-img: Allow cache mode specification for amend

Michael Tokarev (1):
      block/vvfat.c: remove debugging code to reinit stderr if NULL

Ming Lei (1):
      test-coroutine: test cost introduced by coroutine

Peter Lieven (1):
      block/iscsi: fix memory corruption on iscsi resize

Stefan Hajnoczi (4):
      block: acquire AioContext in qmp_block_resize()
      virtio-blk: allow block_resize with dataplane
      raw-posix: fix O_DIRECT short reads
      qemu-iotests: add test case 101 for short file I/O

zhanghailiang (1):
      virtio-blk: fix reference a pointer which might be freed

 block-migration.c                |   6 +-
 block.c                          | 149 +++++++++++++++++++++++++++++++++++++--
 block/archipelago.c              |   6 +-
 block/blkdebug.c                 | 101 ++++++++++++++++++++++++++
 block/blkverify.c                |  29 ++++++++
 block/bochs.c                    |   2 +-
 block/gluster.c                  |   8 +--
 block/iscsi.c                    |   5 +-
 block/nbd.c                      |  36 ++++++++++
 block/nfs.c                      |   2 +-
 block/parallels.c                |   2 +-
 block/qcow.c                     |   2 +-
 block/qcow2-cache.c              |  13 ++--
 block/qcow2-cluster.c            |   2 +-
 block/qcow2-refcount.c           |   8 +--
 block/qcow2-snapshot.c           |   8 +--
 block/qcow2.c                    | 120 ++++++++++++++++++++++++++++---
 block/qcow2.h                    |  13 +++-
 block/qed-check.c                |   3 +-
 block/quorum.c                   |  39 ++++++++++
 block/raw-posix.c                |  11 ++-
 block/rbd.c                      |   6 +-
 block/sheepdog.c                 |   6 +-
 block/vdi.c                      |   2 +-
 block/vhdx-log.c                 |   2 +-
 block/vhdx.c                     |   4 +-
 block/vmdk.c                     |  18 +++--
 block/vvfat.c                    |  19 ++---
 blockdev-nbd.c                   |   2 +-
 blockdev.c                       |  15 ++--
 hw/block/dataplane/virtio-blk.c  |   1 +
 hw/block/nvme.c                  |   8 +--
 hw/block/virtio-blk.c            |   3 +-
 hw/ide/ahci.c                    |   2 +-
 hw/ide/microdrive.c              |   2 +-
 include/block/block.h            |   1 +
 include/block/block_int.h        |   6 ++
 qemu-img-cmds.hx                 |  20 +++---
 qemu-img.c                       |  97 +++++++++++++++++++------
 qemu-img.texi                    |  16 +++--
 qemu-io-cmds.c                   |  21 ++----
 qemu-io.c                        |   2 +-
 tests/image-fuzzer/runner.py     |  50 ++++++++++---
 tests/qemu-iotests/028           |   1 +
 tests/qemu-iotests/028.out       |   3 +-
 tests/qemu-iotests/099           | 116 ++++++++++++++++++++++++++++++
 tests/qemu-iotests/099.out       |  20 ++++++
 tests/qemu-iotests/101           |  58 +++++++++++++++
 tests/qemu-iotests/101.out       |  10 +++
 tests/qemu-iotests/103           |  99 ++++++++++++++++++++++++++
 tests/qemu-iotests/103.out       |  29 ++++++++
 tests/qemu-iotests/common.filter |  22 ++++++
 tests/qemu-iotests/common.rc     |  19 +----
 tests/qemu-iotests/group         |   3 +
 tests/test-coroutine.c           |  30 ++++++++
 55 files changed, 1103 insertions(+), 175 deletions(-)
 create mode 100755 tests/qemu-iotests/099
 create mode 100644 tests/qemu-iotests/099.out
 create mode 100755 tests/qemu-iotests/101
 create mode 100644 tests/qemu-iotests/101.out
 create mode 100755 tests/qemu-iotests/103
 create mode 100644 tests/qemu-iotests/103.out

             reply	other threads:[~2014-08-22 14:52 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-22 14:51 Kevin Wolf [this message]
2014-08-22 14:51 ` [Qemu-devel] [PULL 01/29] block: Use g_new() & friends where that makes obvious sense Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 02/29] block: Use g_new() & friends to avoid multiplying sizes Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 03/29] qemu-io-cmds: g_renew() can't fail, bury dead error handling Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 04/29] block: Drop some superfluous casts from void * Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 05/29] runner: Add an argument for test duration Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 06/29] runner: Kill a program under test by time-out Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 07/29] qcow2: Constant cache size in bytes Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 08/29] qcow2: Use g_try_new0() for cache array Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 09/29] qcow2: Add runtime options for cache sizes Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 10/29] iotests: Add test for qcow2's cache options Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 11/29] test-coroutine: test cost introduced by coroutine Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 12/29] qemu-iotests: Fix 028 reference output for qed Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 13/29] block: acquire AioContext in qmp_block_resize() Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 14/29] virtio-blk: allow block_resize with dataplane Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 15/29] virtio-blk: fix reference a pointer which might be freed Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 16/29] block: Add bdrv_refresh_filename() Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 17/29] blkdebug: Implement bdrv_refresh_filename() Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 18/29] blkverify: " Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 19/29] nbd: " Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 20/29] quorum: " Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 21/29] iotests: Add test for image filename construction Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 22/29] block/vvfat.c: remove debugging code to reinit stderr if NULL Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 23/29] block/iscsi: fix memory corruption on iscsi resize Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 24/29] raw-posix: fix O_DIRECT short reads Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 25/29] qemu-iotests: add test case 101 for short file I/O Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 26/29] blkdebug: Delete BH in bdrv_aio_cancel Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 27/29] vmdk: Use bdrv_nb_sectors() where sectors, not bytes are wanted Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 28/29] qemu-img: Allow source cache mode specification Kevin Wolf
2014-08-22 14:51 ` [Qemu-devel] [PULL 29/29] qemu-img: Allow cache mode specification for amend Kevin Wolf
2014-08-22 15:09 ` [Qemu-devel] [PULL 00/29] Block patches Daniel H Barboza
2014-08-22 16:23 ` Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2018-06-11 14:25 Max Reitz
2018-06-11 15:20 ` Peter Maydell
2016-03-17 15:56 Kevin Wolf
2016-03-17 16:46 ` Peter Maydell
2011-08-03 14:13 Kevin Wolf
2011-08-04 22:07 ` Anthony Liguori

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=1408719113-5316-1-git-send-email-kwolf@redhat.com \
    --to=kwolf@redhat.com \
    --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).