qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Kevin Wolf <kwolf@redhat.com>
To: qemu-block@nongnu.org
Cc: kwolf@redhat.com, qemu-devel@nongnu.org, mreitz@redhat.com
Subject: [Qemu-devel] [PULL 00/16] Block patches
Date: Fri,  4 Sep 2015 22:10:31 +0200	[thread overview]
Message-ID: <1441397447-6516-1-git-send-email-kwolf@redhat.com> (raw)

The following changes since commit b597aa037dbd98014c8dec3d69a5e2240f432533:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-monitor-2015-09-04' into staging (2015-09-04 17:37:50 +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 c804b5791d51608c0e12e4cc2b40b3d763ce796c:

  Merge remote-tracking branch 'mreitz/tags/pull-block-for-kevin-2015-09-04' into queue-block (2015-09-04 21:43:55 +0200)

----------------------------------------------------------------

Block layer patches

----------------------------------------------------------------
Alberto Garcia (4):
      qcow2: mark the memory as no longer needed after qcow2_cache_empty()
      qcow2: add option to clean unused cache entries after some time
      docs: document how to configure the qcow2 L2/refcount caches
      qcow2: reorder fields in Qcow2CachedTable to reduce padding

Bo Tu (5):
      qemu-iotests: qemu machine type support
      qemu-iotests: disable default qemu devices for cross-platform compatibility
      qemu-iotests: s390x: fix test 041 and 055
      qemu-iotests: s390x: fix test 049, reject negative sizes in QemuOpts
      qemu-iotests: s390x: fix test 130

Kevin Wolf (1):
      Merge remote-tracking branch 'mreitz/tags/pull-block-for-kevin-2015-09-04' into queue-block

Max Reitz (6):
      block/raw-posix: Use raw_normalize_devicepath()
      qemu-img: Fix crash in amend invocation
      iotests: More options for VM.add_drive()
      iotests: Respect -nodefaults in tests 41 and 55
      iotests: Do not suppress segfaults in bash tests
      iotests: Warn if python subprocess is killed

Wen Congyang (1):
      quorum: validate vote threshold against num_children even if read-pattern is fifo

 block/qcow2-cache.c              |  63 +++++++++-
 block/qcow2.c                    |  64 ++++++++++
 block/qcow2.h                    |   4 +
 block/quorum.c                   |  12 +-
 block/raw-posix.c                |  22 +++-
 docs/qcow2-cache.txt             | 164 ++++++++++++++++++++++++
 qapi/block-core.json             |   7 +-
 qemu-img.c                       |   3 +-
 tests/qemu-iotests/039           |  19 +--
 tests/qemu-iotests/039.out       |   6 +-
 tests/qemu-iotests/041           |  18 ++-
 tests/qemu-iotests/049.out       |  10 +-
 tests/qemu-iotests/055           |  19 ++-
 tests/qemu-iotests/061           |   6 +-
 tests/qemu-iotests/061.out       |   2 +
 tests/qemu-iotests/067           |   8 +-
 tests/qemu-iotests/067.out       | 266 +--------------------------------------
 tests/qemu-iotests/071.out       |   4 -
 tests/qemu-iotests/081.out       |   2 -
 tests/qemu-iotests/087.out       |  12 --
 tests/qemu-iotests/130           |   8 +-
 tests/qemu-iotests/130.out       |   4 +-
 tests/qemu-iotests/check         |  13 +-
 tests/qemu-iotests/common        |   1 +
 tests/qemu-iotests/common.config |  38 +++++-
 tests/qemu-iotests/common.qemu   |   2 +-
 tests/qemu-iotests/common.rc     |  12 +-
 tests/qemu-iotests/iotests.py    |  52 ++++++--
 util/qemu-option.c               |   5 +
 29 files changed, 487 insertions(+), 359 deletions(-)
 create mode 100644 docs/qcow2-cache.txt

             reply	other threads:[~2015-09-04 20:11 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-04 20:10 Kevin Wolf [this message]
2015-09-04 20:10 ` [Qemu-devel] [PULL 01/16] qemu-iotests: qemu machine type support Kevin Wolf
2015-09-04 20:10 ` [Qemu-devel] [PULL 02/16] qemu-iotests: disable default qemu devices for cross-platform compatibility Kevin Wolf
2015-09-04 20:10 ` [Qemu-devel] [PULL 03/16] qemu-iotests: s390x: fix test 041 and 055 Kevin Wolf
2015-09-04 20:10 ` [Qemu-devel] [PULL 04/16] qemu-iotests: s390x: fix test 049, reject negative sizes in QemuOpts Kevin Wolf
2015-09-04 20:10 ` [Qemu-devel] [PULL 05/16] qemu-iotests: s390x: fix test 130 Kevin Wolf
2015-09-04 20:10 ` [Qemu-devel] [PULL 06/16] block/raw-posix: Use raw_normalize_devicepath() Kevin Wolf
2015-09-04 20:10 ` [Qemu-devel] [PULL 07/16] qemu-img: Fix crash in amend invocation Kevin Wolf
2015-09-04 20:10 ` [Qemu-devel] [PULL 08/16] iotests: More options for VM.add_drive() Kevin Wolf
2015-09-04 20:10 ` [Qemu-devel] [PULL 09/16] iotests: Respect -nodefaults in tests 41 and 55 Kevin Wolf
2015-09-04 20:10 ` [Qemu-devel] [PULL 10/16] iotests: Do not suppress segfaults in bash tests Kevin Wolf
2015-09-04 20:10 ` [Qemu-devel] [PULL 11/16] iotests: Warn if python subprocess is killed Kevin Wolf
2015-09-04 20:10 ` [Qemu-devel] [PULL 12/16] qcow2: mark the memory as no longer needed after qcow2_cache_empty() Kevin Wolf
2015-09-04 20:10 ` [Qemu-devel] [PULL 13/16] qcow2: add option to clean unused cache entries after some time Kevin Wolf
2015-09-04 20:10 ` [Qemu-devel] [PULL 14/16] docs: document how to configure the qcow2 L2/refcount caches Kevin Wolf
2015-09-04 20:10 ` [Qemu-devel] [PULL 15/16] qcow2: reorder fields in Qcow2CachedTable to reduce padding Kevin Wolf
2015-09-04 20:10 ` [Qemu-devel] [PULL 16/16] quorum: validate vote threshold against num_children even if read-pattern is fifo Kevin Wolf
2015-09-07 12:18 ` [Qemu-devel] [PULL 00/16] Block patches Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2019-09-16 14:22 Max Reitz
2019-09-16 15:34 ` no-reply
2019-09-17  9:20 ` Peter Maydell
2015-01-16 15:36 Stefan Hajnoczi
2015-01-16 16:46 ` Peter Maydell
2015-01-17 10:41   ` Peter Wu
2015-01-20 10:26     ` Stefan Hajnoczi
2010-11-30 17:58 Kevin Wolf
2010-12-06 13:32 ` Anthony Liguori
2010-12-06 13:41   ` Kevin Wolf
2010-12-06 14:09     ` 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=1441397447-6516-1-git-send-email-kwolf@redhat.com \
    --to=kwolf@redhat.com \
    --cc=mreitz@redhat.com \
    --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 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).