qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/24] Block patches
@ 2011-10-14 16:48 Kevin Wolf
  2011-10-14 16:48 ` [Qemu-devel] [PATCH 01/24] block: allow resizing of images residing on host devices Kevin Wolf
                   ` (24 more replies)
  0 siblings, 25 replies; 31+ messages in thread
From: Kevin Wolf @ 2011-10-14 16:48 UTC (permalink / raw)
  To: anthony; +Cc: kwolf, qemu-devel

The following changes since commit ebffe2afceb1a17b5d134b5debf553955fe5ea1a:

  Merge remote-tracking branch 'qmp/queue/qmp' into staging (2011-10-10 08:21:46 -0500)

are available in the git repository at:

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

Christoph Hellwig (1):
      block: allow resizing of images residing on host devices

Kevin Wolf (3):
      linux-aio: Fix laio_submit error handling
      vvfat: Fix potential buffer overflow
      linux-aio: Allow reads beyond the end of growable images

Luiz Capitulino (6):
      block: Keep track of devices' I/O status
      virtio: Support I/O status
      ide: Support I/O status
      scsi: Support I/O status
      QMP: query-status: Add 'io-status' key
      HMP: Print 'io-status' information

Stefan Hajnoczi (12):
      block: directly invoke .bdrv_aio_*() in bdrv_co_io_em()
      block: directly invoke .bdrv_* from emulation functions
      block: split out bdrv_co_do_readv() and bdrv_co_do_writev()
      block: switch bdrv_read()/bdrv_write() to coroutines
      block: switch bdrv_aio_readv() to coroutines
      block: mark blocks dirty on coroutine write completion
      block: switch bdrv_aio_writev() to coroutines
      block: drop emulation functions that use coroutines
      raw-posix: remove bdrv_read()/bdrv_write()
      block: use coroutine interface for raw format
      block: drop .bdrv_read()/.bdrv_write() emulation
      block: drop bdrv_has_async_rw()

Stefan Weil (2):
      block/vvfat: Fix potential memory leaks and other memory errors
      block/vvfat: Remove unused code

 block.c           |  424 ++++++++++++++++++++++-------------------------------
 block.h           |   10 ++
 block/raw-posix.c |  301 +++-----------------------------------
 block/raw.c       |   32 +---
 block/vvfat.c     |  109 ++++----------
 block_int.h       |    1 +
 hw/ide/core.c     |    2 +
 hw/scsi-disk.c    |    2 +
 hw/virtio-blk.c   |    2 +
 linux-aio.c       |   21 ++-
 monitor.c         |    6 +
 qmp-commands.hx   |    6 +
 12 files changed, 283 insertions(+), 633 deletions(-)

^ permalink raw reply	[flat|nested] 31+ messages in thread
* [Qemu-devel] [PULL 00/24] Block patches
@ 2017-02-20  9:32 Stefan Hajnoczi
  2017-02-20 13:37 ` Peter Maydell
  0 siblings, 1 reply; 31+ messages in thread
From: Stefan Hajnoczi @ 2017-02-20  9:32 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi

The following changes since commit 5dae13cd71f0755a1395b5a4cde635b8a6ee3f58:

  Merge remote-tracking branch 'remotes/rth/tags/pull-or-20170214' into staging (2017-02-14 09:55:48 +0000)

are available in the git repository at:

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

for you to fetch changes up to decc18f33adecb1316437a47fff0cf0a7665906a:

  coroutine-lock: make CoRwlock thread-safe and fair (2017-02-16 17:17:34 +0000)

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

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

Paolo Bonzini (24):
  block: move AioContext, QEMUTimer, main-loop to libqemuutil
  aio: introduce aio_co_schedule and aio_co_wake
  block-backend: allow blk_prw from coroutine context
  test-thread-pool: use generic AioContext infrastructure
  io: add methods to set I/O handlers on AioContext
  io: make qio_channel_yield aware of AioContexts
  nbd: convert to use qio_channel_yield
  coroutine-lock: reschedule coroutine on the AioContext it was running
    on
  blkdebug: reschedule coroutine on the AioContext it is running on
  qed: introduce qed_aio_start_io and qed_aio_next_io_cb
  aio: push aio_context_acquire/release down to dispatching
  block: explicitly acquire aiocontext in timers that need it
  block: explicitly acquire aiocontext in callbacks that need it
  block: explicitly acquire aiocontext in bottom halves that need it
  block: explicitly acquire aiocontext in aio callbacks that need it
  aio-posix: partially inline aio_dispatch into aio_poll
  async: remove unnecessary inc/dec pairs
  block: document fields protected by AioContext lock
  coroutine-lock: make CoMutex thread-safe
  coroutine-lock: add limited spinning to CoMutex
  test-aio-multithread: add performance comparison with thread-based
    mutexes
  coroutine-lock: place CoMutex before CoQueue in header
  coroutine-lock: add mutex argument to CoQueue APIs
  coroutine-lock: make CoRwlock thread-safe and fair

 Makefile.objs                       |   4 -
 stubs/Makefile.objs                 |   1 +
 tests/Makefile.include              |  19 +-
 util/Makefile.objs                  |   6 +-
 block/nbd-client.h                  |   2 +-
 block/qed.h                         |   3 +
 include/block/aio.h                 |  38 ++-
 include/block/block_int.h           |  64 +++--
 include/io/channel.h                |  72 +++++-
 include/qemu/coroutine.h            |  84 ++++---
 include/qemu/coroutine_int.h        |  11 +-
 include/sysemu/block-backend.h      |  14 +-
 tests/iothread.h                    |  25 ++
 block/backup.c                      |   2 +-
 block/blkdebug.c                    |   9 +-
 block/blkreplay.c                   |   2 +-
 block/block-backend.c               |  13 +-
 block/curl.c                        |  44 +++-
 block/gluster.c                     |   9 +-
 block/io.c                          |  42 +---
 block/iscsi.c                       |  15 +-
 block/linux-aio.c                   |  10 +-
 block/mirror.c                      |  12 +-
 block/nbd-client.c                  | 119 +++++----
 block/nfs.c                         |   9 +-
 block/qcow2-cluster.c               |   4 +-
 block/qed-cluster.c                 |   2 +
 block/qed-table.c                   |  12 +-
 block/qed.c                         |  58 +++--
 block/sheepdog.c                    |  31 +--
 block/ssh.c                         |  29 +--
 block/throttle-groups.c             |   4 +-
 block/win32-aio.c                   |   9 +-
 dma-helpers.c                       |   2 +
 hw/9pfs/9p.c                        |   2 +-
 hw/block/virtio-blk.c               |  19 +-
 hw/scsi/scsi-bus.c                  |   2 +
 hw/scsi/scsi-disk.c                 |  15 ++
 hw/scsi/scsi-generic.c              |  20 +-
 hw/scsi/virtio-scsi.c               |   6 +
 io/channel-command.c                |  13 +
 io/channel-file.c                   |  11 +
 io/channel-socket.c                 |  16 +-
 io/channel-tls.c                    |  12 +
 io/channel-watch.c                  |   6 +
 io/channel.c                        |  97 ++++++--
 nbd/client.c                        |   2 +-
 nbd/common.c                        |   9 +-
 nbd/server.c                        |  94 +++-----
 stubs/linux-aio.c                   |  32 +++
 stubs/set-fd-handler.c              |  11 -
 tests/iothread.c                    |  91 +++++++
 tests/test-aio-multithread.c        | 463 ++++++++++++++++++++++++++++++++++++
 tests/test-thread-pool.c            |  12 +-
 aio-posix.c => util/aio-posix.c     |  62 ++---
 aio-win32.c => util/aio-win32.c     |  30 +--
 util/aiocb.c                        |  55 +++++
 async.c => util/async.c             |  84 ++++++-
 iohandler.c => util/iohandler.c     |   0
 main-loop.c => util/main-loop.c     |   0
 util/qemu-coroutine-lock.c          | 254 ++++++++++++++++++--
 util/qemu-coroutine-sleep.c         |   2 +-
 util/qemu-coroutine.c               |   8 +
 qemu-timer.c => util/qemu-timer.c   |   0
 thread-pool.c => util/thread-pool.c |   8 +-
 trace-events                        |  11 -
 util/trace-events                   |  17 +-
 67 files changed, 1711 insertions(+), 533 deletions(-)
 create mode 100644 tests/iothread.h
 create mode 100644 stubs/linux-aio.c
 create mode 100644 tests/iothread.c
 create mode 100644 tests/test-aio-multithread.c
 rename aio-posix.c => util/aio-posix.c (94%)
 rename aio-win32.c => util/aio-win32.c (95%)
 create mode 100644 util/aiocb.c
 rename async.c => util/async.c (82%)
 rename iohandler.c => util/iohandler.c (100%)
 rename main-loop.c => util/main-loop.c (100%)
 rename qemu-timer.c => util/qemu-timer.c (100%)
 rename thread-pool.c => util/thread-pool.c (97%)

-- 
2.9.3

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

end of thread, other threads:[~2017-02-21 11:16 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-14 16:48 [Qemu-devel] [PULL 00/24] Block patches Kevin Wolf
2011-10-14 16:48 ` [Qemu-devel] [PATCH 01/24] block: allow resizing of images residing on host devices Kevin Wolf
2011-10-14 16:48 ` [Qemu-devel] [PATCH 02/24] linux-aio: Fix laio_submit error handling Kevin Wolf
2011-10-14 16:48 ` [Qemu-devel] [PATCH 03/24] block: Keep track of devices' I/O status Kevin Wolf
2011-10-14 16:48 ` [Qemu-devel] [PATCH 04/24] virtio: Support " Kevin Wolf
2011-10-14 16:49 ` [Qemu-devel] [PATCH 05/24] ide: " Kevin Wolf
2011-10-14 16:49 ` [Qemu-devel] [PATCH 06/24] scsi: " Kevin Wolf
2011-10-14 16:49 ` [Qemu-devel] [PATCH 07/24] QMP: query-status: Add 'io-status' key Kevin Wolf
2011-10-14 16:49 ` [Qemu-devel] [PATCH 08/24] HMP: Print 'io-status' information Kevin Wolf
2011-10-14 16:49 ` [Qemu-devel] [PATCH 09/24] block/vvfat: Fix potential memory leaks and other memory errors Kevin Wolf
2011-10-14 16:49 ` [Qemu-devel] [PATCH 10/24] block/vvfat: Remove unused code Kevin Wolf
2011-10-14 16:49 ` [Qemu-devel] [PATCH 11/24] vvfat: Fix potential buffer overflow Kevin Wolf
2011-10-14 16:49 ` [Qemu-devel] [PATCH 12/24] block: directly invoke .bdrv_aio_*() in bdrv_co_io_em() Kevin Wolf
2011-10-14 16:49 ` [Qemu-devel] [PATCH 13/24] block: directly invoke .bdrv_* from emulation functions Kevin Wolf
2011-10-14 16:49 ` [Qemu-devel] [PATCH 14/24] block: split out bdrv_co_do_readv() and bdrv_co_do_writev() Kevin Wolf
2011-10-14 16:49 ` [Qemu-devel] [PATCH 15/24] block: switch bdrv_read()/bdrv_write() to coroutines Kevin Wolf
2011-10-24 15:12   ` Pierre Riteau
2011-10-14 16:49 ` [Qemu-devel] [PATCH 16/24] block: switch bdrv_aio_readv() " Kevin Wolf
2011-10-14 16:49 ` [Qemu-devel] [PATCH 17/24] block: mark blocks dirty on coroutine write completion Kevin Wolf
2011-10-14 16:49 ` [Qemu-devel] [PATCH 18/24] block: switch bdrv_aio_writev() to coroutines Kevin Wolf
2011-10-14 16:49 ` [Qemu-devel] [PATCH 19/24] linux-aio: Allow reads beyond the end of growable images Kevin Wolf
2011-10-14 16:49 ` [Qemu-devel] [PATCH 20/24] block: drop emulation functions that use coroutines Kevin Wolf
2011-10-14 16:49 ` [Qemu-devel] [PATCH 21/24] raw-posix: remove bdrv_read()/bdrv_write() Kevin Wolf
2011-10-14 16:49 ` [Qemu-devel] [PATCH 22/24] block: use coroutine interface for raw format Kevin Wolf
2011-10-14 16:49 ` [Qemu-devel] [PATCH 23/24] block: drop .bdrv_read()/.bdrv_write() emulation Kevin Wolf
2011-10-14 16:49 ` [Qemu-devel] [PATCH 24/24] block: drop bdrv_has_async_rw() Kevin Wolf
2011-10-14 17:48 ` [Qemu-devel] [PULL 00/24] Block patches Anthony Liguori
  -- strict thread matches above, loose matches on Subject: below --
2017-02-20  9:32 Stefan Hajnoczi
2017-02-20 13:37 ` Peter Maydell
2017-02-20 13:53   ` Paolo Bonzini
2017-02-21 11:16   ` Stefan Hajnoczi

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