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/22] Block patches
Date: Fri, 12 Sep 2014 17:56:44 +0200	[thread overview]
Message-ID: <1410537426-9917-1-git-send-email-kwolf@redhat.com> (raw)

The following changes since commit 10601bef566461efbea81ee344ed3355ce71954a:

  Merge remote-tracking branch 'remotes/mcayland/tags/qemu-sparc-signed' into staging (2014-09-09 15:08:05 +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 0e4271b711a8ea766d29824c844e268b91ac3ae5:

  qcow2: Add falloc and full preallocation option (2014-09-12 15:43:06 +0200)

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

----------------------------------------------------------------
Benoît Canet (4):
      block: Extract the BlockAcctStats structure
      block: Extract the block accounting code
      block: rename BlockAcctType members to start with BLOCK_ instead of BDRV_
      block: Make the block accounting functions operate on BlockAcctStats

Chrysostomos Nanakos (2):
      block/archipelago: Implement bdrv_truncate()
      qemu-iotests: Run 025 for Archipelago block driver

Hu Tao (5):
      block: round up file size to nearest sector
      block: don't convert file size to sector size
      qapi: introduce PreallocMode and new PreallocModes full and falloc.
      raw-posix: Add falloc and full preallocation option
      qcow2: Add falloc and full preallocation option

Luiz Capitulino (2):
      block: extend BLOCK_IO_ERROR event with nospace indicator
      block: extend BLOCK_IO_ERROR with reason string

Markus Armbruster (5):
      qemu-io: Clean up openfile() after commit 2e40134
      xen_disk: Plug memory leak on error path
      xen: Drop redundant bdrv_close() from pci_piix3_xen_ide_unplug()
      thread-pool: Drop unnecessary includes
      blockdev: Refuse to drive_del something added with blockdev-add

Stefan Hajnoczi (1):
      dataplane: fix virtio_blk_data_plane_create() op blocker error path

Stratos Psomadakis (1):
      iotests: Send the correct fd in socket_scm_helper

Valentin Manea (1):
      IDE: MMIO IDE device control should be little endian

Xiaodong Gong (1):
      Fix improper usage of cpu_to_be32 in vpc

 block.c                                |  60 +++++++++----------
 block/Makefile.objs                    |   1 +
 block/accounting.c                     |  54 +++++++++++++++++
 block/archipelago.c                    |  66 ++++++++++++++++++++-
 block/cow.c                            |   3 +-
 block/gluster.c                        |   9 ++-
 block/iscsi.c                          |   4 +-
 block/nfs.c                            |   3 +-
 block/qapi.c                           |  19 +++---
 block/qcow.c                           |   7 ++-
 block/qcow2.c                          |  82 +++++++++++++++++++++-----
 block/qed.c                            |   3 +-
 block/raw-posix.c                      | 102 +++++++++++++++++++++++++--------
 block/raw-win32.c                      |   6 +-
 block/rbd.c                            |   3 +-
 block/sheepdog.c                       |   3 +-
 block/ssh.c                            |   3 +-
 block/vdi.c                            |   3 +-
 block/vhdx.c                           |   3 +-
 block/vmdk.c                           |   3 +-
 block/vpc.c                            |  11 ++--
 blockdev.c                             |  10 +++-
 dma-helpers.c                          |   2 +-
 hw/block/dataplane/virtio-blk.c        |   4 +-
 hw/block/nvme.c                        |   4 +-
 hw/block/virtio-blk.c                  |  15 +++--
 hw/block/xen_disk.c                    |  39 ++++++-------
 hw/ide/ahci.c                          |   7 ++-
 hw/ide/atapi.c                         |  18 +++---
 hw/ide/core.c                          |  24 ++++----
 hw/ide/macio.c                         |  19 +++---
 hw/ide/mmio.c                          |   4 +-
 hw/ide/piix.c                          |   1 -
 hw/scsi/scsi-disk.c                    |  45 +++++++++------
 include/block/accounting.h             |  57 ++++++++++++++++++
 include/block/block.h                  |  20 +------
 include/block/block_int.h              |   6 +-
 include/block/thread-pool.h            |   6 +-
 include/hw/virtio/virtio-blk.h         |   1 +
 include/sysemu/dma.h                   |   1 +
 qapi/block-core.json                   |  30 +++++++++-
 qemu-doc.texi                          |  17 +++++-
 qemu-img.texi                          |  17 +++++-
 qemu-io.c                              |  36 +++++-------
 tests/qemu-iotests/025                 |   2 +-
 tests/qemu-iotests/049.out             |   2 +-
 tests/qemu-iotests/082.out             |  54 ++++++++---------
 tests/qemu-iotests/104                 |  57 ++++++++++++++++++
 tests/qemu-iotests/104.out             |  12 ++++
 tests/qemu-iotests/common.filter       |  21 +++++++
 tests/qemu-iotests/group               |   1 +
 tests/qemu-iotests/socket_scm_helper.c |   2 +-
 thread-pool.c                          |   1 -
 53 files changed, 704 insertions(+), 279 deletions(-)
 create mode 100644 block/accounting.c
 create mode 100644 include/block/accounting.h
 create mode 100755 tests/qemu-iotests/104
 create mode 100644 tests/qemu-iotests/104.out

             reply	other threads:[~2014-09-12 15:57 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-12 15:56 Kevin Wolf [this message]
2014-09-12 15:56 ` [Qemu-devel] [PULL 01/22] block: extend BLOCK_IO_ERROR event with nospace indicator Kevin Wolf
2014-09-12 15:56 ` [Qemu-devel] [PULL 02/22] Fix improper usage of cpu_to_be32 in vpc Kevin Wolf
2014-09-12 15:56 ` [Qemu-devel] [PULL 03/22] qemu-io: Clean up openfile() after commit 2e40134 Kevin Wolf
2014-09-12 15:56 ` [Qemu-devel] [PULL 04/22] xen_disk: Plug memory leak on error path Kevin Wolf
2014-09-12 15:56 ` [Qemu-devel] [PULL 05/22] xen: Drop redundant bdrv_close() from pci_piix3_xen_ide_unplug() Kevin Wolf
2014-09-12 15:56 ` [Qemu-devel] [PULL 06/22] thread-pool: Drop unnecessary includes Kevin Wolf
2014-09-12 15:56 ` [Qemu-devel] [PULL 07/22] IDE: MMIO IDE device control should be little endian Kevin Wolf
2014-09-12 15:56 ` [Qemu-devel] [PULL 08/22] block: Extract the BlockAcctStats structure Kevin Wolf
2014-09-12 15:56 ` [Qemu-devel] [PULL 09/22] block: Extract the block accounting code Kevin Wolf
2014-09-12 15:56 ` [Qemu-devel] [PULL 10/22] block: rename BlockAcctType members to start with BLOCK_ instead of BDRV_ Kevin Wolf
2014-09-12 15:56 ` [Qemu-devel] [PULL 11/22] block: Make the block accounting functions operate on BlockAcctStats Kevin Wolf
2014-09-12 15:56 ` [Qemu-devel] [PULL 12/22] block/archipelago: Implement bdrv_truncate() Kevin Wolf
2014-09-12 15:56 ` [Qemu-devel] [PULL 13/22] qemu-iotests: Run 025 for Archipelago block driver Kevin Wolf
2014-09-12 15:56 ` [Qemu-devel] [PULL 14/22] dataplane: fix virtio_blk_data_plane_create() op blocker error path Kevin Wolf
2014-09-12 15:56 ` [Qemu-devel] [PULL 15/22] block: extend BLOCK_IO_ERROR with reason string Kevin Wolf
2014-09-12 15:57 ` [Qemu-devel] [PULL 16/22] blockdev: Refuse to drive_del something added with blockdev-add Kevin Wolf
2014-09-12 15:57 ` [Qemu-devel] [PULL 17/22] iotests: Send the correct fd in socket_scm_helper Kevin Wolf
2014-09-12 15:57 ` [Qemu-devel] [PULL 18/22] block: round up file size to nearest sector Kevin Wolf
2014-09-12 15:57 ` [Qemu-devel] [PULL 19/22] block: don't convert file size to sector size Kevin Wolf
2014-09-12 15:57 ` [Qemu-devel] [PULL 20/22] qapi: introduce PreallocMode and new PreallocModes full and falloc Kevin Wolf
2014-09-12 15:57 ` [Qemu-devel] [PULL 21/22] raw-posix: Add falloc and full preallocation option Kevin Wolf
2014-09-12 15:57 ` [Qemu-devel] [PULL 22/22] qcow2: " Kevin Wolf
2014-09-15 18:44 ` [Qemu-devel] [PULL 00/22] Block patches Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2014-05-19 14:22 Kevin Wolf
2014-05-22 14:26 ` Peter Maydell
2012-01-26 16:37 Kevin Wolf
2012-01-27 17:33 ` 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=1410537426-9917-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).