mbox

[PULL,00/28] Block patches

Message ID 1296487756-12553-1-git-send-email-kwolf@redhat.com
State New
Headers show

Pull-request

git://repo.or.cz/qemu/kevin.git block

Message

Kevin Wolf Jan. 31, 2011, 3:28 p.m. UTC
The following changes since commit 45d1aa828f8c94b082a0aa2dbf76535594ee45df:

  Update OpenBIOS images to r1018 (2011-01-30 13:10:10 +0000)

are available in the git repository at:
  git://repo.or.cz/qemu/kevin.git block

Blue Swirl (1):
      qcow2-refcount: remove write-only variables

Christoph Hellwig (3):
      block: add block_resize monitor command
      block: tell drivers about an image resize
      virtio-blk: tell the guest about size changes

Jes Sorensen (6):
      strtosz(): use unsigned char and switch to qemu_isspace()
      strtosz() use qemu_toupper() to simplify switch statement
      strtosz(): Fix name confusion in use of modf()
      strtosz(): Use suffix macros in switch() statement
      Add documentation for STRTOSZ_DEFSUFFIX_ macros
      Reorganize struct Qcow2Cache for better struct packing

Kevin Wolf (3):
      qemu-io: Fix discard command
      qcow2: Add bdrv_discard support
      raw-win32: Fix bdrv_flush return value

MORITA Kazutaka (1):
      sheepdog: support creating images on remote hosts

Markus Armbruster (11):
      scsi hotplug: Set DriveInfo member bus correctly
      blockdev: New drive_get_next(), replacing qdev_init_bdrv()
      blockdev: Move BlockInterfaceType from qemu-common.h to blockdev.h
      blockdev: Put BlockInterfaceType names and max_devs in tables
      blockdev: Fix regression in -drive if=scsi,index=N
      blockdev: Make drive_add() take explicit type, index parameters
      blockdev: Factor drive_index_to_{bus,unit}_id out of drive_init()
      blockdev: New drive_get_by_index()
      blockdev: Reject multiple definitions for the same drive
      blockdev: Replace drive_add()'s fmt, ... by optstr parameter
      blockdev: Fix drive_add for drives without media

Stefan Hajnoczi (3):
      virtio-pci: Disable virtio-ioeventfd when !CONFIG_IOTHREAD
      ahci: Fix cpu_physical_memory_unmap() argument ordering
      qed: Images with backing file do not require QED_F_NEED_CHECK

 block.c                |   12 ++-
 block.h                |    3 +-
 block/qcow2-cache.c    |    2 +-
 block/qcow2-cluster.c  |   82 +++++++++++++++++++++++
 block/qcow2-refcount.c |    5 +-
 block/qcow2.c          |    8 ++
 block/qcow2.h          |    2 +
 block/qed.c            |   24 +++++--
 block/raw-win32.c      |    2 +-
 block/sheepdog.c       |   17 ++++-
 block_int.h            |    5 +-
 blockdev.c             |  173 ++++++++++++++++++++++++++++++++---------------
 blockdev.h             |   19 ++++--
 cutils.c               |   28 ++++-----
 hmp-commands.hx        |   19 +++++
 hw/device-hotplug.c    |    5 +-
 hw/ide.h               |    2 +
 hw/ide/ahci.c          |   11 ++--
 hw/ide/core.c          |    6 ++-
 hw/pci-hotplug.c       |    1 +
 hw/pl181.c             |    7 +-
 hw/qdev.c              |   15 ----
 hw/qdev.h              |    2 -
 hw/scsi.h              |    3 +-
 hw/sd.c                |    7 ++-
 hw/ssi-sd.c            |    7 +-
 hw/usb-msd.c           |    3 +-
 hw/virtio-blk.c        |   10 +++
 kvm-all.c              |    8 ++-
 qemu-common.h          |   13 ++--
 qemu-io.c              |    2 +-
 qmp-commands.hx        |   28 ++++++++
 savevm.c               |    1 -
 vl.c                   |  104 +++++++++++++++++------------
 34 files changed, 447 insertions(+), 189 deletions(-)

Comments

Anthony Liguori Jan. 31, 2011, 6:01 p.m. UTC | #1
On 01/31/2011 09:28 AM, Kevin Wolf wrote:
> The following changes since commit 45d1aa828f8c94b082a0aa2dbf76535594ee45df:
>
>    Update OpenBIOS images to r1018 (2011-01-30 13:10:10 +0000)
>
> are available in the git repository at:
>    git://repo.or.cz/qemu/kevin.git block
>    

Pulled.  Thanks.

Regards,

Anthony Liguori

> Blue Swirl (1):
>        qcow2-refcount: remove write-only variables
>
> Christoph Hellwig (3):
>        block: add block_resize monitor command
>        block: tell drivers about an image resize
>        virtio-blk: tell the guest about size changes
>
> Jes Sorensen (6):
>        strtosz(): use unsigned char and switch to qemu_isspace()
>        strtosz() use qemu_toupper() to simplify switch statement
>        strtosz(): Fix name confusion in use of modf()
>        strtosz(): Use suffix macros in switch() statement
>        Add documentation for STRTOSZ_DEFSUFFIX_ macros
>        Reorganize struct Qcow2Cache for better struct packing
>
> Kevin Wolf (3):
>        qemu-io: Fix discard command
>        qcow2: Add bdrv_discard support
>        raw-win32: Fix bdrv_flush return value
>
> MORITA Kazutaka (1):
>        sheepdog: support creating images on remote hosts
>
> Markus Armbruster (11):
>        scsi hotplug: Set DriveInfo member bus correctly
>        blockdev: New drive_get_next(), replacing qdev_init_bdrv()
>        blockdev: Move BlockInterfaceType from qemu-common.h to blockdev.h
>        blockdev: Put BlockInterfaceType names and max_devs in tables
>        blockdev: Fix regression in -drive if=scsi,index=N
>        blockdev: Make drive_add() take explicit type, index parameters
>        blockdev: Factor drive_index_to_{bus,unit}_id out of drive_init()
>        blockdev: New drive_get_by_index()
>        blockdev: Reject multiple definitions for the same drive
>        blockdev: Replace drive_add()'s fmt, ... by optstr parameter
>        blockdev: Fix drive_add for drives without media
>
> Stefan Hajnoczi (3):
>        virtio-pci: Disable virtio-ioeventfd when !CONFIG_IOTHREAD
>        ahci: Fix cpu_physical_memory_unmap() argument ordering
>        qed: Images with backing file do not require QED_F_NEED_CHECK
>
>   block.c                |   12 ++-
>   block.h                |    3 +-
>   block/qcow2-cache.c    |    2 +-
>   block/qcow2-cluster.c  |   82 +++++++++++++++++++++++
>   block/qcow2-refcount.c |    5 +-
>   block/qcow2.c          |    8 ++
>   block/qcow2.h          |    2 +
>   block/qed.c            |   24 +++++--
>   block/raw-win32.c      |    2 +-
>   block/sheepdog.c       |   17 ++++-
>   block_int.h            |    5 +-
>   blockdev.c             |  173 ++++++++++++++++++++++++++++++++---------------
>   blockdev.h             |   19 ++++--
>   cutils.c               |   28 ++++-----
>   hmp-commands.hx        |   19 +++++
>   hw/device-hotplug.c    |    5 +-
>   hw/ide.h               |    2 +
>   hw/ide/ahci.c          |   11 ++--
>   hw/ide/core.c          |    6 ++-
>   hw/pci-hotplug.c       |    1 +
>   hw/pl181.c             |    7 +-
>   hw/qdev.c              |   15 ----
>   hw/qdev.h              |    2 -
>   hw/scsi.h              |    3 +-
>   hw/sd.c                |    7 ++-
>   hw/ssi-sd.c            |    7 +-
>   hw/usb-msd.c           |    3 +-
>   hw/virtio-blk.c        |   10 +++
>   kvm-all.c              |    8 ++-
>   qemu-common.h          |   13 ++--
>   qemu-io.c              |    2 +-
>   qmp-commands.hx        |   28 ++++++++
>   savevm.c               |    1 -
>   vl.c                   |  104 +++++++++++++++++------------
>   34 files changed, 447 insertions(+), 189 deletions(-)
>