qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/38] Block patches
@ 2015-05-22  9:01 Stefan Hajnoczi
  2015-05-22  9:01 ` [Qemu-devel] [PULL 01/38] iotests, parallels: quote TEST_IMG in 076 test to be path-safe Stefan Hajnoczi
                   ` (38 more replies)
  0 siblings, 39 replies; 41+ messages in thread
From: Stefan Hajnoczi @ 2015-05-22  9:01 UTC (permalink / raw)
  To: qemu-devel; +Cc: Kevin Wolf, Peter Maydell, Stefan Hajnoczi

The following changes since commit 9e549d36e989b14423279fb991b71728a2a4ae7c:

  Merge remote-tracking branch 'remotes/kraxel/tags/pull-vnc-20150520-1' into staging (2015-05-21 09:07:19 +0100)

are available in the git repository at:

  git://github.com/stefanha/qemu.git tags/block-pull-request

for you to fetch changes up to a53f1a95f9605f300fbafbc8b60b8a8c67e9c4b4:

  block: get_block_status: use "else" when testing the opposite condition (2015-05-22 09:37:33 +0100)

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

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

Denis V. Lunev (26):
  iotests, parallels: quote TEST_IMG in 076 test to be path-safe
  block/parallels: rename parallels_header to ParallelsHeader
  block/parallels: provide _co_readv routine for parallels format driver
  block/parallels: replace magic constants 4, 64 with proper sizeofs
  block/parallels: mark parallels format driver as zero inited
  block/parallels: _co_writev callback for Parallels format
  iotests, parallels: test for write into Parallels image
  block/parallels: support parallels image creation
  iotests, parallels: test for newly created parallels image via
    qemu-img
  parallels: change copyright information in the image header
  block/parallels: rename catalog_ names to bat_
  block/parallels: create bat2sect helper
  block/parallels: keep BAT bitmap data in little endian in memory
  block/parallels: read parallels image header and BAT into single
    buffer
  block/parallels: move parallels_open/probe to the very end of the file
  block/parallels: implement parallels_check method of block driver
  block/parallels: implement incorrect close detection
  iotests, parallels: check for incorrectly closed image in tests
  block/parallels: improve image reading performance
  block/parallels: create bat_entry_off helper
  block/parallels: delay writing to BAT till bdrv_co_flush_to_os
  block/parallels: add prealloc-mode and prealloc-size open paramemets
  block/parallels: optimize linear image expansion
  block/parallels: improve image writing performance further
  block: minimal bounce buffer alignment
  block: align bounce buffers to page

Fam Zheng (3):
  Revert "block: Fix unaligned zero write"
  block: Fix NULL deference for unaligned write if qiov is NULL
  qemu-iotests: Test unaligned sub-block zero write

John Snow (3):
  configure: factor out supported flag check
  configure: silence glib unknown attribute __alloc_size__
  configure: Add workaround for ccache and clang

Paolo Bonzini (2):
  block: return EPERM on writes or discards to read-only devices
  block: get_block_status: use "else" when testing the opposite
    condition

Roman Kagan (3):
  block/parallels: switch to bdrv_read
  block/parallels: read up to cluster end in one go
  block/parallels: add get_block_status

Stefan Hajnoczi (1):
  configure: handle clang -nopie argument warning

 block.c                    |  15 +-
 block/io.c                 | 159 +++++++----
 block/parallels.c          | 683 ++++++++++++++++++++++++++++++++++++++++-----
 block/raw-posix.c          |  14 +-
 configure                  |  81 ++++--
 include/block/block.h      |   2 +
 include/block/block_int.h  |   3 +
 tests/qemu-iotests/033     |  13 +
 tests/qemu-iotests/033.out |  30 ++
 tests/qemu-iotests/076     |  15 +-
 tests/qemu-iotests/076.out |  10 +
 tests/qemu-iotests/131     |  77 +++++
 tests/qemu-iotests/131.out |  41 +++
 tests/qemu-iotests/group   |   1 +
 14 files changed, 998 insertions(+), 146 deletions(-)
 create mode 100755 tests/qemu-iotests/131
 create mode 100644 tests/qemu-iotests/131.out

-- 
2.1.0

^ permalink raw reply	[flat|nested] 41+ messages in thread
* [Qemu-devel] [PULL 00/38] Block patches
@ 2010-12-17 17:44 Kevin Wolf
  0 siblings, 0 replies; 41+ messages in thread
From: Kevin Wolf @ 2010-12-17 17:44 UTC (permalink / raw)
  To: anthony; +Cc: kwolf, qemu-devel

The following changes since commit 9d861fa595c93f22d1d55b723a691531c36c9672:

  Merge remote branch 'arm/for-anthony' into staging (2010-12-17 08:25:17 -0600)

are available in the git repository at:

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

Alexander Graf (10):
      ide: split ide command interpretation off
      ide: fix whitespace gap in ide_exec_cmd
      ide: Split out BMDMA code from ATA core
      ide: move transfer_start after variable modification
      pci: add storage class for sata
      pci: add ich9 pci id
      ahci: add ahci emulation
      config: move ide core and pci to pci.mak
      config: add ahci for pci capable machines
      ide: honor ncq for atapi

Christoph Hellwig (3):
      block: add discard support
      scsi-disk: support WRITE SAME (16) with unmap bit
      raw-posix: add discard support

Jes Sorensen (9):
      Introduce strtosz_suffix()
      qemu-img.c: Clean up handling of image size in img_create()
      qemu-img.c: Re-factor img_create()
      Introduce do_snapshot_blkdev() and monitor command to handle it.
      Prevent creating an image with the same filename as backing file
      bdrv_img_create() use proper errno return values
      qemu.img.c: Use error_report() instead of own error() implementation
      block/qcow2.c: rename qcow_ functions to qcow2_
      Add proper -errno error return values to qcow2_open()

Kevin Wolf (3):
      qemu-img: Call error_set_progname
      Remove NULL checks for bdrv_new return value
      qemu-io: Fix typo in help texts

Roland Elek (1):
      ide: add ncq identify data for ahci sata drives

Ryan Harper (1):
      blockdev: check dinfo ptr before using

Sebastian Herbszt (1):
      ahci: set SATA Mode Select

Stefan Hajnoczi (10):
      block: Introduce path_has_protocol() function
      block: Fix the use of protocols in backing files
      ide: Register vm change state handler once only
      qemu-io: Add discard command
      docs: Add QED image format specification
      qed: Add QEMU Enhanced Disk image format
      qed: Table, L2 cache, and cluster functions
      qed: Read/write support
      qed: Consistency check support
      docs: Fix missing carets in QED specification

 Makefile.objs                        |    3 +
 block.c                              |  234 +++++-
 block.h                              |    5 +
 block/qcow2-cluster.c                |    6 +-
 block/qcow2-snapshot.c               |    6 +-
 block/qcow2.c                        |  248 +++---
 block/qed-check.c                    |  210 +++++
 block/qed-cluster.c                  |  154 ++++
 block/qed-gencb.c                    |   32 +
 block/qed-l2-cache.c                 |  173 ++++
 block/qed-table.c                    |  319 +++++++
 block/qed.c                          | 1349 ++++++++++++++++++++++++++++++
 block/qed.h                          |  301 +++++++
 block/raw-posix.c                    |   45 +
 block/raw.c                          |    6 +
 block_int.h                          |    8 +-
 blockdev.c                           |   68 ++-
 blockdev.h                           |    1 +
 configure                            |   26 +
 cutils.c                             |   17 +-
 default-configs/arm-softmmu.mak      |    1 -
 default-configs/i386-softmmu.mak     |    3 -
 default-configs/mips-softmmu.mak     |    3 -
 default-configs/mips64-softmmu.mak   |    3 -
 default-configs/mips64el-softmmu.mak |    3 -
 default-configs/mipsel-softmmu.mak   |    3 -
 default-configs/pci.mak              |    4 +
 default-configs/ppc-softmmu.mak      |    3 -
 default-configs/ppc64-softmmu.mak    |    3 -
 default-configs/ppcemb-softmmu.mak   |    3 -
 default-configs/sh4-softmmu.mak      |    1 -
 default-configs/sh4eb-softmmu.mak    |    1 -
 default-configs/sparc64-softmmu.mak  |    3 -
 default-configs/x86_64-softmmu.mak   |    3 -
 docs/specs/qed_spec.txt              |  130 +++
 hmp-commands.hx                      |   19 +
 hw/ide/ahci.c                        | 1527 ++++++++++++++++++++++++++++++++++
 hw/ide/cmd646.c                      |   18 +-
 hw/ide/core.c                        | 1116 +++++++++++--------------
 hw/ide/internal.h                    |   73 +-
 hw/ide/pci.c                         |  280 ++++++-
 hw/ide/pci.h                         |   30 +
 hw/ide/piix.c                        |   34 +-
 hw/ide/via.c                         |   34 +-
 hw/pci.h                             |    1 +
 hw/pci_ids.h                         |    1 +
 hw/scsi-defs.h                       |    1 +
 hw/scsi-disk.c                       |   53 ++-
 hw/xen_disk.c                        |   17 +-
 qemu-common.h                        |    7 +
 qemu-img.c                           |  250 ++----
 qemu-io.c                            |  102 +++-
 qemu-nbd.c                           |    2 -
 trace-events                         |   21 +
 54 files changed, 5892 insertions(+), 1072 deletions(-)
 create mode 100644 block/qed-check.c
 create mode 100644 block/qed-cluster.c
 create mode 100644 block/qed-gencb.c
 create mode 100644 block/qed-l2-cache.c
 create mode 100644 block/qed-table.c
 create mode 100644 block/qed.c
 create mode 100644 block/qed.h
 create mode 100644 docs/specs/qed_spec.txt
 create mode 100644 hw/ide/ahci.c

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

end of thread, other threads:[~2015-05-22 14:48 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-22  9:01 [Qemu-devel] [PULL 00/38] Block patches Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 01/38] iotests, parallels: quote TEST_IMG in 076 test to be path-safe Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 02/38] block/parallels: rename parallels_header to ParallelsHeader Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 03/38] block/parallels: switch to bdrv_read Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 04/38] block/parallels: read up to cluster end in one go Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 05/38] block/parallels: add get_block_status Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 06/38] block/parallels: provide _co_readv routine for parallels format driver Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 07/38] block/parallels: replace magic constants 4, 64 with proper sizeofs Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 08/38] block/parallels: mark parallels format driver as zero inited Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 09/38] block/parallels: _co_writev callback for Parallels format Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 10/38] iotests, parallels: test for write into Parallels image Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 11/38] block/parallels: support parallels image creation Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 12/38] iotests, parallels: test for newly created parallels image via qemu-img Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 13/38] parallels: change copyright information in the image header Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 14/38] block/parallels: rename catalog_ names to bat_ Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 15/38] block/parallels: create bat2sect helper Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 16/38] block/parallels: keep BAT bitmap data in little endian in memory Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 17/38] block/parallels: read parallels image header and BAT into single buffer Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 18/38] block/parallels: move parallels_open/probe to the very end of the file Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 19/38] block/parallels: implement parallels_check method of block driver Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 20/38] block/parallels: implement incorrect close detection Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 21/38] iotests, parallels: check for incorrectly closed image in tests Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 22/38] block/parallels: improve image reading performance Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 23/38] block/parallels: create bat_entry_off helper Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 24/38] block/parallels: delay writing to BAT till bdrv_co_flush_to_os Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 25/38] block/parallels: add prealloc-mode and prealloc-size open paramemets Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 26/38] block/parallels: optimize linear image expansion Stefan Hajnoczi
2015-05-22  9:01 ` [Qemu-devel] [PULL 27/38] block/parallels: improve image writing performance further Stefan Hajnoczi
2015-05-22  9:02 ` [Qemu-devel] [PULL 28/38] configure: handle clang -nopie argument warning Stefan Hajnoczi
2015-05-22  9:02 ` [Qemu-devel] [PULL 29/38] configure: factor out supported flag check Stefan Hajnoczi
2015-05-22  9:02 ` [Qemu-devel] [PULL 30/38] configure: silence glib unknown attribute __alloc_size__ Stefan Hajnoczi
2015-05-22  9:02 ` [Qemu-devel] [PULL 31/38] configure: Add workaround for ccache and clang Stefan Hajnoczi
2015-05-22  9:02 ` [Qemu-devel] [PULL 32/38] block: return EPERM on writes or discards to read-only devices Stefan Hajnoczi
2015-05-22  9:02 ` [Qemu-devel] [PULL 33/38] block: minimal bounce buffer alignment Stefan Hajnoczi
2015-05-22  9:02 ` [Qemu-devel] [PULL 34/38] block: align bounce buffers to page Stefan Hajnoczi
2015-05-22  9:02 ` [Qemu-devel] [PULL 35/38] Revert "block: Fix unaligned zero write" Stefan Hajnoczi
2015-05-22  9:02 ` [Qemu-devel] [PULL 36/38] block: Fix NULL deference for unaligned write if qiov is NULL Stefan Hajnoczi
2015-05-22  9:02 ` [Qemu-devel] [PULL 37/38] qemu-iotests: Test unaligned sub-block zero write Stefan Hajnoczi
2015-05-22  9:02 ` [Qemu-devel] [PULL 38/38] block: get_block_status: use "else" when testing the opposite condition Stefan Hajnoczi
2015-05-22 14:48 ` [Qemu-devel] [PULL 00/38] Block patches Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2010-12-17 17:44 Kevin Wolf

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