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
Subject: [Qemu-devel] [PULL 00/22] Block layer core and image format patches
Date: Fri, 22 May 2015 17:26:18 +0200	[thread overview]
Message-ID: <1432308400-13958-1-git-send-email-kwolf@redhat.com> (raw)

The following changes since commit 8b6db32a4ec47d1171ccfa21d557096b99f4eef0:

  Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging (2015-05-22 13:25:40 +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 4120201d2fcfc24404fe6eb6b761b66bc35bca16:

  MAINTAINERS: Split "Block QAPI, monitor, command line" off core (2015-05-22 17:08:09 +0200)

----------------------------------------------------------------
Block layer core and image format patches

----------------------------------------------------------------
Alberto Garcia (7):
      qcow2: use one single memory block for the L2/refcount cache tables
      qcow2: simplify qcow2_cache_put() and qcow2_cache_entry_mark_dirty()
      qcow2: use an LRU algorithm to replace entries from the L2 cache
      qcow2: remove qcow2_cache_find_entry_to_replace()
      qcow2: use a hash to look for entries in the L2 cache
      qcow2: make qcow2_cache_put() a void function
      qcow2: style fixes in qcow2-cache.c

Christoph Hellwig (1):
      nvme: support NVME_VOLATILE_WRITE_CACHE feature

Daniel P. Berrange (5):
      qcow2/qcow: protect against uninitialized encryption key
      util: move read_password method out of qemu-img into osdep/oslib
      util: allow \n to terminate password input
      qemu-io: prompt for encryption keys when required
      tests: add test case for encrypted qcow2 read/write

Eric Blake (1):
      qemu-io: Use getopt() correctly

Fam Zheng (5):
      vmdk: Fix next_cluster_sector for compressed write
      vmdk: Fix overflow if l1_size is 0x20000000
      block: Detect multiplication overflow in bdrv_getlength
      qemu-iotests: qemu-img info on afl VMDK image with a huge capacity
      qemu-iotests: Make debugging python tests easier

Kevin Wolf (2):
      qcow2: Flush pending discards before allocating cluster
      MAINTAINERS: Add header files to Block Layer Core section

Markus Armbruster (1):
      MAINTAINERS: Split "Block QAPI, monitor, command line" off core

 MAINTAINERS                                    |   9 ++
 block.c                                        |   1 +
 block/qcow.c                                   |  10 +-
 block/qcow2-cache.c                            | 171 +++++++++++--------------
 block/qcow2-cluster.c                          |  65 +++-------
 block/qcow2-refcount.c                         |  42 +++---
 block/qcow2.c                                  |  18 ++-
 block/qcow2.h                                  |   5 +-
 block/vmdk.c                                   |  17 ++-
 hw/block/nvme.c                                |   3 +
 include/qemu/osdep.h                           |   2 +
 qemu-img.c                                     |  93 +-------------
 qemu-io-cmds.c                                 |  16 +--
 qemu-io.c                                      |  23 +++-
 tests/qemu-iotests/059                         |   5 +
 tests/qemu-iotests/059.out                     |   3 +
 tests/qemu-iotests/134                         |  69 ++++++++++
 tests/qemu-iotests/134.out                     |  46 +++++++
 tests/qemu-iotests/check                       |  12 +-
 tests/qemu-iotests/common                      |   6 +
 tests/qemu-iotests/group                       |   1 +
 tests/qemu-iotests/iotests.py                  |  14 +-
 tests/qemu-iotests/sample_images/afl9.vmdk.bz2 | Bin 0 -> 178 bytes
 util/oslib-posix.c                             |  67 ++++++++++
 util/oslib-win32.c                             |  24 ++++
 25 files changed, 429 insertions(+), 293 deletions(-)
 create mode 100755 tests/qemu-iotests/134
 create mode 100644 tests/qemu-iotests/134.out
 create mode 100644 tests/qemu-iotests/sample_images/afl9.vmdk.bz2

             reply	other threads:[~2015-05-22 15:26 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-22 15:26 Kevin Wolf [this message]
2015-05-22 15:26 ` [Qemu-devel] [PULL 01/22] qcow2: Flush pending discards before allocating cluster Kevin Wolf
2015-05-22 15:26 ` [Qemu-devel] [PULL 02/22] nvme: support NVME_VOLATILE_WRITE_CACHE feature Kevin Wolf
2015-05-22 15:26 ` [Qemu-devel] [PULL 03/22] vmdk: Fix next_cluster_sector for compressed write Kevin Wolf
2015-05-22 15:26 ` [Qemu-devel] [PULL 04/22] vmdk: Fix overflow if l1_size is 0x20000000 Kevin Wolf
2015-05-22 15:26 ` [Qemu-devel] [PULL 05/22] qcow2: use one single memory block for the L2/refcount cache tables Kevin Wolf
2015-05-22 15:26 ` [Qemu-devel] [PULL 06/22] qcow2: simplify qcow2_cache_put() and qcow2_cache_entry_mark_dirty() Kevin Wolf
2015-05-22 15:26 ` [Qemu-devel] [PULL 07/22] qcow2: use an LRU algorithm to replace entries from the L2 cache Kevin Wolf
2015-05-22 15:26 ` [Qemu-devel] [PULL 08/22] qcow2: remove qcow2_cache_find_entry_to_replace() Kevin Wolf
2015-05-22 15:26 ` [Qemu-devel] [PULL 09/22] qcow2: use a hash to look for entries in the L2 cache Kevin Wolf
2015-05-22 15:26 ` [Qemu-devel] [PULL 10/22] qcow2: make qcow2_cache_put() a void function Kevin Wolf
2015-05-22 15:26 ` [Qemu-devel] [PULL 11/22] qcow2: style fixes in qcow2-cache.c Kevin Wolf
2015-05-22 15:26 ` [Qemu-devel] [PULL 12/22] qemu-io: Use getopt() correctly Kevin Wolf
2015-05-22 15:26 ` [Qemu-devel] [PULL 13/22] block: Detect multiplication overflow in bdrv_getlength Kevin Wolf
2015-05-22 15:26 ` [Qemu-devel] [PULL 14/22] qemu-iotests: qemu-img info on afl VMDK image with a huge capacity Kevin Wolf
2015-05-22 15:26 ` [Qemu-devel] [PULL 15/22] qemu-iotests: Make debugging python tests easier Kevin Wolf
2015-05-22 15:26 ` [Qemu-devel] [PULL 16/22] qcow2/qcow: protect against uninitialized encryption key Kevin Wolf
2015-05-22 15:26 ` [Qemu-devel] [PULL 17/22] util: move read_password method out of qemu-img into osdep/oslib Kevin Wolf
2015-05-22 15:26 ` [Qemu-devel] [PULL 18/22] util: allow \n to terminate password input Kevin Wolf
2015-05-22 15:26 ` [Qemu-devel] [PULL 19/22] qemu-io: prompt for encryption keys when required Kevin Wolf
2015-05-22 15:26 ` [Qemu-devel] [PULL 20/22] tests: add test case for encrypted qcow2 read/write Kevin Wolf
2015-05-22 15:26 ` [Qemu-devel] [PULL 21/22] MAINTAINERS: Add header files to Block Layer Core section Kevin Wolf
2015-05-22 15:26 ` [Qemu-devel] [PULL 22/22] MAINTAINERS: Split "Block QAPI, monitor, command line" off core Kevin Wolf
2015-05-26 10:30 ` [Qemu-devel] [PULL 00/22] Block layer core and image format 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=1432308400-13958-1-git-send-email-kwolf@redhat.com \
    --to=kwolf@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).