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/15] Block patches
Date: Fri, 10 Feb 2012 13:47:29 +0100	[thread overview]
Message-ID: <1328878064-4907-1-git-send-email-kwolf@redhat.com> (raw)

The following changes since commit 57c83dacfe179bf061b8fa79d9553ebabe4d2ff4:

  make: Remove duplicate use of GLIB_CFLAGS (2012-02-09 20:44:38 +0400)

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

Alexander Graf (2):
      AHCI: Fix port reset race
      AHCI: Masking of IRQs actually masks them

Charles Arnold (1):
      vpc: Add support for Fixed Disk type

Dong Xu Wang (1):
      rewrite QEMU_BUILD_BUG_ON

Kevin Wolf (3):
      vpc: Round up image size during fixed image creation
      qcow2: Update whole header at once
      qcow2: Keep unknown header extension when rewriting header

MORITA Kazutaka (1):
      sheepdog: fix co_recv coroutine context

Ronnie Sahlberg (1):
      iSCSI: add configuration variables for iSCSI

Stefan Hajnoczi (6):
      cutils: extract buffer_is_zero() from qemu-img.c
      block: add .bdrv_co_write_zeroes() interface
      block: perform zero-detection during copy-on-read
      qed: replace is_write with flags field
      qed: add .bdrv_co_write_zeroes() support
      qemu-io: add write -z option for bdrv_co_write_zeroes

 block.c          |   67 +++++++++++--
 block.h          |    8 ++
 block/iscsi.c    |  139 +++++++++++++++++++++++++--
 block/qcow2.c    |  194 ++++++++++++++++++++++++++------------
 block/qcow2.h    |    9 ++
 block/qed.c      |  125 +++++++++++++++++++++---
 block/qed.h      |    7 +-
 block/sheepdog.c |    3 +
 block/vpc.c      |  282 ++++++++++++++++++++++++++++++++++++-----------------
 block_int.h      |    8 ++
 compiler.h       |    4 +-
 cutils.c         |   35 +++++++
 hw/ide/ahci.c    |    7 ++
 qemu-common.h    |    2 +
 qemu-config.c    |   27 +++++
 qemu-doc.texi    |   54 ++++++++++-
 qemu-img.c       |   46 ++--------
 qemu-io.c        |   77 +++++++++++++--
 qemu-options.hx  |   16 +++-
 trace-events     |    3 +-
 vl.c             |    8 ++
 21 files changed, 881 insertions(+), 240 deletions(-)

             reply	other threads:[~2012-02-10 12:44 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-02-10 12:47 Kevin Wolf [this message]
2012-02-10 12:47 ` [Qemu-devel] [PATCH 01/15] cutils: extract buffer_is_zero() from qemu-img.c Kevin Wolf
2012-02-10 12:47 ` [Qemu-devel] [PATCH 02/15] block: add .bdrv_co_write_zeroes() interface Kevin Wolf
2012-02-10 12:47 ` [Qemu-devel] [PATCH 03/15] block: perform zero-detection during copy-on-read Kevin Wolf
2012-02-10 12:47 ` [Qemu-devel] [PATCH 04/15] qed: replace is_write with flags field Kevin Wolf
2012-02-10 12:47 ` [Qemu-devel] [PATCH 05/15] qed: add .bdrv_co_write_zeroes() support Kevin Wolf
2012-02-10 12:47 ` [Qemu-devel] [PATCH 06/15] qemu-io: add write -z option for bdrv_co_write_zeroes Kevin Wolf
2012-02-10 12:47 ` [Qemu-devel] [PATCH 07/15] iSCSI: add configuration variables for iSCSI Kevin Wolf
2012-02-10 12:47 ` [Qemu-devel] [PATCH 08/15] vpc: Add support for Fixed Disk type Kevin Wolf
2012-02-10 12:47 ` [Qemu-devel] [PATCH 09/15] vpc: Round up image size during fixed image creation Kevin Wolf
2012-02-10 12:47 ` [Qemu-devel] [PATCH 10/15] qcow2: Update whole header at once Kevin Wolf
2012-02-10 12:47 ` [Qemu-devel] [PATCH 11/15] qcow2: Keep unknown header extension when rewriting header Kevin Wolf
2012-02-10 12:47 ` [Qemu-devel] [PATCH 12/15] rewrite QEMU_BUILD_BUG_ON Kevin Wolf
2012-02-10 12:47 ` [Qemu-devel] [PATCH 13/15] AHCI: Fix port reset race Kevin Wolf
2012-02-10 12:47 ` [Qemu-devel] [PATCH 14/15] sheepdog: fix co_recv coroutine context Kevin Wolf
2012-02-10 12:47 ` [Qemu-devel] [PATCH 15/15] AHCI: Masking of IRQs actually masks them Kevin Wolf
2012-02-15 10:14 ` [Qemu-devel] [PULL 00/15] Block patches Kevin Wolf
2012-02-16  0:31 ` Anthony Liguori
  -- strict thread matches above, loose matches on Subject: below --
2019-08-27 18:22 Max Reitz
2019-09-03  8:39 ` Peter Maydell
2019-09-03 12:50   ` Max Reitz
2015-06-24 15:27 Stefan Hajnoczi
2015-06-25 13:03 ` Peter Maydell
2013-05-03 11:52 Stefan Hajnoczi
2011-04-07 14:49 Kevin Wolf
2011-04-07 15:44 ` 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=1328878064-4907-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).