qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/27] Block patches
@ 2012-02-29 15:17 Kevin Wolf
  2012-02-29 15:17 ` [Qemu-devel] [PATCH 01/27] fdc: take side count into account Kevin Wolf
                   ` (27 more replies)
  0 siblings, 28 replies; 29+ messages in thread
From: Kevin Wolf @ 2012-02-29 15:17 UTC (permalink / raw)
  To: anthony; +Cc: kwolf, qemu-devel

The following changes since commit b55c952aea6de024bf1a06357b49367fba045443:

  Merge remote-tracking branch 'aneesh/for-upstream' into staging (2012-02-27 11:19:27 -0600)

are available in the git repository at:

  git://repo.or.cz/qemu/kevin.git for-anthony

Hervé Poussineau (10):
      fdc: take side count into account
      fdc: set busy bit when starting a command
      fdc: most control commands do not generate interrupts
      fdc: handle read-only floppies (abort early on write commands)
      fdc: add CCR (Configuration Control Register) write register
      block: add a transfer rate for floppy types
      fdc: add a 'check media rate' property. Not used yet
      fdc: check if media rate is correct before doing any transfer
      fdc: fix seek command, which shouldn't check tracks
      fdc: DIR (Digital Input Register) should return status of current drive...

Jeff Cody (2):
      qapi: Introduce blockdev-group-snapshot-sync command
      QMP: Add qmp command for blockdev-group-snapshot-sync

Kevin Wolf (6):
      qcow2: Fix build with DEBUG_EXT enabled
      qcow2: Fix offset in qcow2_read_extensions
      qcow2: Reject too large header extensions
      qemu-iotests: Filter out DOS line endings
      qemu-iotests: 026: Reduce output changes for cache=none qcow2
      qemu-iotests: Test rebase with short backing file

Paolo Bonzini (3):
      ide: fail I/O to empty disk
      block: remove unused fields in BlockDriverState
      block: drop aio_multiwrite in BlockDriver

Stefan Hajnoczi (4):
      qemu-iotests: export TEST_DIR for non-bash tests
      qemu-iotests: add iotests Python module
      test: add image streaming tests
      qemu-tool: revert cpu_get_clock() abort(3)

Zhi Yong Wu (2):
      qemu-io: fix segment fault when the image format is qed
      qemu-img: fix segment fault when the image format is qed

 block.c                          |  178 ++++++++++++++++++++++++++------------
 block.h                          |   11 ++-
 block/qcow2.c                    |   11 ++-
 block_int.h                      |   17 ++---
 blockdev.c                       |  131 ++++++++++++++++++++++++++++
 hw/fdc.c                         |  142 ++++++++++++++++++++++++------
 hw/ide/core.c                    |   24 ++++-
 hw/pc.c                          |    3 +-
 hw/pc_piix.c                     |   28 ++++++
 qapi-schema.json                 |   38 ++++++++
 qemu-img.c                       |    2 +
 qemu-io.c                        |    2 +
 qemu-tool.c                      |    2 +-
 qmp-commands.hx                  |   39 ++++++++
 tests/qemu-iotests/026           |    6 ++
 tests/qemu-iotests/028           |    5 +
 tests/qemu-iotests/028.out       |    1 +
 tests/qemu-iotests/030           |  151 ++++++++++++++++++++++++++++++++
 tests/qemu-iotests/030.out       |    5 +
 tests/qemu-iotests/check         |    4 +-
 tests/qemu-iotests/common.config |    2 +
 tests/qemu-iotests/common.filter |    8 ++-
 tests/qemu-iotests/group         |    1 +
 tests/qemu-iotests/iotests.py    |  164 +++++++++++++++++++++++++++++++++++
 24 files changed, 868 insertions(+), 107 deletions(-)
 create mode 100755 tests/qemu-iotests/030
 create mode 100644 tests/qemu-iotests/030.out
 create mode 100644 tests/qemu-iotests/iotests.py

^ permalink raw reply	[flat|nested] 29+ messages in thread

end of thread, other threads:[~2012-02-29 21:06 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-29 15:17 [Qemu-devel] [PULL 00/27] Block patches Kevin Wolf
2012-02-29 15:17 ` [Qemu-devel] [PATCH 01/27] fdc: take side count into account Kevin Wolf
2012-02-29 15:17 ` [Qemu-devel] [PATCH 02/27] fdc: set busy bit when starting a command Kevin Wolf
2012-02-29 15:17 ` [Qemu-devel] [PATCH 03/27] fdc: most control commands do not generate interrupts Kevin Wolf
2012-02-29 15:17 ` [Qemu-devel] [PATCH 04/27] fdc: handle read-only floppies (abort early on write commands) Kevin Wolf
2012-02-29 15:17 ` [Qemu-devel] [PATCH 05/27] fdc: add CCR (Configuration Control Register) write register Kevin Wolf
2012-02-29 15:17 ` [Qemu-devel] [PATCH 06/27] block: add a transfer rate for floppy types Kevin Wolf
2012-02-29 15:17 ` [Qemu-devel] [PATCH 07/27] fdc: add a 'check media rate' property. Not used yet Kevin Wolf
2012-02-29 15:17 ` [Qemu-devel] [PATCH 08/27] fdc: check if media rate is correct before doing any transfer Kevin Wolf
2012-02-29 15:17 ` [Qemu-devel] [PATCH 09/27] fdc: fix seek command, which shouldn't check tracks Kevin Wolf
2012-02-29 15:17 ` [Qemu-devel] [PATCH 10/27] fdc: DIR (Digital Input Register) should return status of current drive Kevin Wolf
2012-02-29 15:17 ` [Qemu-devel] [PATCH 11/27] ide: fail I/O to empty disk Kevin Wolf
2012-02-29 15:17 ` [Qemu-devel] [PATCH 12/27] qcow2: Fix build with DEBUG_EXT enabled Kevin Wolf
2012-02-29 15:17 ` [Qemu-devel] [PATCH 13/27] block: remove unused fields in BlockDriverState Kevin Wolf
2012-02-29 15:17 ` [Qemu-devel] [PATCH 14/27] block: drop aio_multiwrite in BlockDriver Kevin Wolf
2012-02-29 15:17 ` [Qemu-devel] [PATCH 15/27] qcow2: Fix offset in qcow2_read_extensions Kevin Wolf
2012-02-29 15:17 ` [Qemu-devel] [PATCH 16/27] qcow2: Reject too large header extensions Kevin Wolf
2012-02-29 15:17 ` [Qemu-devel] [PATCH 17/27] qapi: Introduce blockdev-group-snapshot-sync command Kevin Wolf
2012-02-29 15:17 ` [Qemu-devel] [PATCH 18/27] QMP: Add qmp command for blockdev-group-snapshot-sync Kevin Wolf
2012-02-29 15:18 ` [Qemu-devel] [PATCH 19/27] qemu-iotests: export TEST_DIR for non-bash tests Kevin Wolf
2012-02-29 15:18 ` [Qemu-devel] [PATCH 20/27] qemu-iotests: add iotests Python module Kevin Wolf
2012-02-29 15:18 ` [Qemu-devel] [PATCH 21/27] test: add image streaming tests Kevin Wolf
2012-02-29 15:18 ` [Qemu-devel] [PATCH 22/27] qemu-iotests: Filter out DOS line endings Kevin Wolf
2012-02-29 15:18 ` [Qemu-devel] [PATCH 23/27] qemu-iotests: 026: Reduce output changes for cache=none qcow2 Kevin Wolf
2012-02-29 15:18 ` [Qemu-devel] [PATCH 24/27] qemu-iotests: Test rebase with short backing file Kevin Wolf
2012-02-29 15:18 ` [Qemu-devel] [PATCH 25/27] qemu-tool: revert cpu_get_clock() abort(3) Kevin Wolf
2012-02-29 15:18 ` [Qemu-devel] [PATCH 26/27] qemu-io: fix segment fault when the image format is qed Kevin Wolf
2012-02-29 15:18 ` [Qemu-devel] [PATCH 27/27] qemu-img: " Kevin Wolf
2012-02-29 21:06 ` [Qemu-devel] [PULL 00/27] Block patches Anthony Liguori

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).