qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Kevin Wolf <kwolf@redhat.com>
To: anthony@codemonkey.ws
Cc: kwolf@redhat.com, qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 00/30] Block patches for 1.1
Date: Thu, 10 May 2012 13:49:04 +0200	[thread overview]
Message-ID: <1336650574-12835-1-git-send-email-kwolf@redhat.com> (raw)

The following changes since commit 1b3e76ebd1e270eae27e502ea8b836c31d95f801:

  tcg/ppc: Fix CONFIG_TCG_PASS_AREG0 mode (2012-05-09 13:59:19 -0500)

are available in the git repository at:
  git://repo.or.cz/qemu/kevin.git for-anthony

Kevin Wolf (3):
      qtest: Add function to send QMP commands
      qtest: Add floppy test
      tests/Makefile: Add missing $(EXESUF)

Paolo Bonzini (26):
      block: add mode argument to blockdev-snapshot-sync
      block: fail live snapshot if disk has no medium
      block: push bdrv_change_backing_file error checking up from drivers
      block: update in-memory backing file and format
      block: open backing file as read-only when probing for size
      block: fix allocation size for dirty bitmap
      qemu-iotests: strip spaces from qemu-img/qemu-io/qemu command lines
      block: fix snapshot on QED
      block: another bdrv_append fix
      block: do not reuse the backing file across bdrv_close/bdrv_open
      block: fully delete bs->file when closing
      block: add block_job_sleep_ns
      block: wait for job callback in block_job_cancel_sync
      block: simplify path_is_absolute
      block: protect path_has_protocol from filenames with colons
      block: move field reset from bdrv_open_common to bdrv_close
      qemu-img: make "info" backing file output correct and easier to use
      qemu-io: correctly print non-integer values as decimals
      qemu-io: fix the alloc command
      stream: fix sectors not allocated test
      stream: add testcase for partial streaming
      stream: pass new base image format to bdrv_change_backing_file
      stream: fix HMP block_job_set_speed
      stream: fix ratelimiting corner case
      stream: do not copy unallocated sectors from the base
      declare ECANCELED on all machines

Zhi Yong Wu (1):
      block: add the support to drain throttled requests

 block.c                       |  176 ++-
 block.h                       |    2 +
 block/qcow2.c                 |    5 -
 block/qed.c                   |    7 +
 block/stream.c                |   76 +-
 block/vvfat.c                 |    7 +
 block_int.h                   |   34 +-
 blockdev.c                    |    9 +-
 cmd.c                         |   40 +-
 hmp.c                         |    2 +-
 qemu-common.h                 |    3 +
 qemu-img.c                    |   12 +-
 qemu-io.c                     |   10 +-
 qmp-commands.hx               |    2 +-
 tests/Makefile                |    4 +-
 tests/fdc-test.c              |  195 +++
 tests/libqtest.c              |  123 ++-
 tests/libqtest.h              |   17 +
 tests/qemu-iotests/002.out    |    4 +-
 tests/qemu-iotests/012.out    |    2 +-
 tests/qemu-iotests/016.out    |   12 +-
 tests/qemu-iotests/017.out    | 1024 ++++++++--------
 tests/qemu-iotests/018.out    | 1024 ++++++++--------
 tests/qemu-iotests/019.out    | 1536 +++++++++++-----------
 tests/qemu-iotests/020.out    | 1024 ++++++++--------
 tests/qemu-iotests/023.out    | 2880 ++++++++++++++++++++--------------------
 tests/qemu-iotests/027.out    |    2 +-
 tests/qemu-iotests/028.out    |  448 ++++----
 tests/qemu-iotests/030        |   34 +-
 tests/qemu-iotests/030.out    |    4 +-
 tests/qemu-iotests/033.out    |    6 +-
 tests/qemu-iotests/035.out    |  384 +++---
 tests/qemu-iotests/iotests.py |   16 +-
 33 files changed, 4777 insertions(+), 4347 deletions(-)
 create mode 100644 tests/fdc-test.c

             reply	other threads:[~2012-05-10 11:49 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-05-10 11:49 Kevin Wolf [this message]
2012-05-10 11:49 ` [Qemu-devel] [PATCH 01/30] block: add the support to drain throttled requests Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 02/30] block: add mode argument to blockdev-snapshot-sync Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 03/30] block: fail live snapshot if disk has no medium Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 04/30] block: push bdrv_change_backing_file error checking up from drivers Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 05/30] block: update in-memory backing file and format Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 06/30] block: open backing file as read-only when probing for size Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 07/30] block: fix allocation size for dirty bitmap Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 08/30] qemu-iotests: strip spaces from qemu-img/qemu-io/qemu command lines Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 09/30] qtest: Add function to send QMP commands Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 10/30] qtest: Add floppy test Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 11/30] block: fix snapshot on QED Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 12/30] block: another bdrv_append fix Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 13/30] block: do not reuse the backing file across bdrv_close/bdrv_open Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 14/30] block: fully delete bs->file when closing Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 15/30] block: add block_job_sleep_ns Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 16/30] block: wait for job callback in block_job_cancel_sync Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 17/30] block: simplify path_is_absolute Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 18/30] block: protect path_has_protocol from filenames with colons Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 19/30] block: move field reset from bdrv_open_common to bdrv_close Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 20/30] qemu-img: make "info" backing file output correct and easier to use Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 21/30] qemu-io: correctly print non-integer values as decimals Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 22/30] qemu-io: fix the alloc command Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 23/30] stream: fix sectors not allocated test Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 24/30] stream: add testcase for partial streaming Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 25/30] stream: pass new base image format to bdrv_change_backing_file Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 26/30] stream: fix HMP block_job_set_speed Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 27/30] stream: fix ratelimiting corner case Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 28/30] stream: do not copy unallocated sectors from the base Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 29/30] tests/Makefile: Add missing $(EXESUF) Kevin Wolf
2012-05-10 11:49 ` [Qemu-devel] [PATCH 30/30] declare ECANCELED on all machines Kevin Wolf
2012-05-14 15:03 ` [Qemu-devel] [PULL 00/30] Block patches for 1.1 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=1336650574-12835-1-git-send-email-kwolf@redhat.com \
    --to=kwolf@redhat.com \
    --cc=anthony@codemonkey.ws \
    --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).