qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Fam Zheng <famz@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>
Subject: [Qemu-devel] [PULL 00/20] Block patches
Date: Fri, 28 Oct 2016 22:49:05 +0800	[thread overview]
Message-ID: <1477666165-17297-1-git-send-email-famz@redhat.com> (raw)

The following changes since commit 9879b75873cacc88cdee490f6ab481e8ce766c69:

  Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (2016-10-28 12:06:41 +0100)

are available in the git repository at:

  git@github.com:famz/qemu tags/for-upstream

for you to fetch changes up to 3fe71223374e71436d4aced8865e50fd36588ff7:

  aio: convert from RFifoLock to QemuRecMutex (2016-10-28 21:50:18 +0800)

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

Hi Peter,

This is Paolo's RFifoLock removal series.

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

Fam Zheng (1):
  qed: Implement .bdrv_drain

Paolo Bonzini (19):
  replication: interrupt failover if the main device is closed
  blockjob: introduce .drain callback for jobs
  mirror: use bdrv_drained_begin/bdrv_drained_end
  block: add BDS field to count in-flight requests
  block: change drain to look only at one child at a time
  block: introduce BDRV_POLL_WHILE
  nfs: move nfs_set_events out of the while loops
  nfs: use BDRV_POLL_WHILE
  sheepdog: use BDRV_POLL_WHILE
  aio: introduce qemu_get_current_aio_context
  iothread: detach all block devices before stopping them
  replication: pass BlockDriverState to reopen_backing_file
  block: prepare bdrv_reopen_multiple to release AioContext
  qemu-io: acquire AioContext
  qemu-img: call aio_context_acquire/release around block job
  block: only call aio_poll on the current thread's AioContext
  iothread: release AioContext around aio_poll
  qemu-thread: introduce QemuRecMutex
  aio: convert from RFifoLock to QemuRecMutex

 async.c                         |  29 ++-------
 block.c                         |   6 +-
 block/backup.c                  |  17 +++++
 block/block-backend.c           |  30 ++++++---
 block/commit.c                  |   2 +-
 block/io.c                      | 137 ++++++++++++++++++++++------------------
 block/mirror.c                  |  70 ++++++++++++++------
 block/nfs.c                     |  55 +++++++++-------
 block/qed-table.c               |  16 ++---
 block/qed.c                     |  16 ++++-
 block/replication.c             |  27 +++++---
 block/sheepdog.c                |  67 +++++++++++---------
 blockjob.c                      |  37 ++++++-----
 docs/multiple-iothreads.txt     |  38 ++++++-----
 hw/scsi/virtio-scsi-dataplane.c |   4 +-
 include/block/aio.h             |  24 +++++--
 include/block/block.h           |  31 ++++++++-
 include/block/block_int.h       |  27 ++++++--
 include/block/blockjob.h        |   7 ++
 include/qemu/rfifolock.h        |  54 ----------------
 include/qemu/thread-posix.h     |   6 ++
 include/qemu/thread-win32.h     |  10 +++
 include/qemu/thread.h           |   3 +
 iothread.c                      |  33 +++++++---
 qemu-img.c                      |   6 ++
 qemu-io-cmds.c                  |   6 +-
 stubs/Makefile.objs             |   1 +
 stubs/iothread.c                |   8 +++
 tests/.gitignore                |   1 -
 tests/Makefile.include          |   2 -
 tests/test-aio.c                |  22 ++++---
 tests/test-rfifolock.c          |  91 --------------------------
 util/Makefile.objs              |   1 -
 util/qemu-thread-posix.c        |  14 ++++
 util/qemu-thread-win32.c        |  25 ++++++++
 util/rfifolock.c                |  78 -----------------------
 36 files changed, 520 insertions(+), 481 deletions(-)
 delete mode 100644 include/qemu/rfifolock.h
 create mode 100644 stubs/iothread.c
 delete mode 100644 tests/test-rfifolock.c
 delete mode 100644 util/rfifolock.c

-- 
2.7.4

             reply	other threads:[~2016-10-28 14:49 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-28 14:49 Fam Zheng [this message]
2016-10-28 14:49 ` [Qemu-devel] [PULL 01/20] replication: interrupt failover if the main device is closed Fam Zheng
2016-10-28 14:49 ` [Qemu-devel] [PULL 02/20] blockjob: introduce .drain callback for jobs Fam Zheng
2016-10-28 14:49 ` [Qemu-devel] [PULL 03/20] mirror: use bdrv_drained_begin/bdrv_drained_end Fam Zheng
2016-10-28 14:49 ` [Qemu-devel] [PULL 04/20] block: add BDS field to count in-flight requests Fam Zheng
2016-10-28 14:49 ` [Qemu-devel] [PULL 05/20] block: change drain to look only at one child at a time Fam Zheng
2016-10-28 14:49 ` [Qemu-devel] [PULL 06/20] qed: Implement .bdrv_drain Fam Zheng
2016-10-28 14:49 ` [Qemu-devel] [PULL 07/20] block: introduce BDRV_POLL_WHILE Fam Zheng
2016-10-28 14:49 ` [Qemu-devel] [PULL 08/20] nfs: move nfs_set_events out of the while loops Fam Zheng
2016-10-28 14:49 ` [Qemu-devel] [PULL 09/20] nfs: use BDRV_POLL_WHILE Fam Zheng
2016-10-28 14:49 ` [Qemu-devel] [PULL 10/20] sheepdog: " Fam Zheng
2016-10-28 14:49 ` [Qemu-devel] [PULL 11/20] aio: introduce qemu_get_current_aio_context Fam Zheng
2016-10-28 14:49 ` [Qemu-devel] [PULL 12/20] iothread: detach all block devices before stopping them Fam Zheng
2016-10-28 14:49 ` [Qemu-devel] [PULL 13/20] replication: pass BlockDriverState to reopen_backing_file Fam Zheng
2016-10-28 14:49 ` [Qemu-devel] [PULL 14/20] block: prepare bdrv_reopen_multiple to release AioContext Fam Zheng
2016-10-28 14:49 ` [Qemu-devel] [PULL 15/20] qemu-io: acquire AioContext Fam Zheng
2016-10-28 14:49 ` [Qemu-devel] [PULL 16/20] qemu-img: call aio_context_acquire/release around block job Fam Zheng
2016-10-28 14:49 ` [Qemu-devel] [PULL 17/20] block: only call aio_poll on the current thread's AioContext Fam Zheng
2016-10-28 14:49 ` [Qemu-devel] [PULL 18/20] iothread: release AioContext around aio_poll Fam Zheng
2016-10-28 14:49 ` [Qemu-devel] [PULL 19/20] qemu-thread: introduce QemuRecMutex Fam Zheng
2016-10-28 14:49 ` [Qemu-devel] [PULL 20/20] aio: convert from RFifoLock to QemuRecMutex Fam Zheng
2016-10-31 11:11 ` [Qemu-devel] [PULL 00/20] Block patches Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2019-06-14 13:40 Max Reitz
2019-06-14 14:51 ` Peter Maydell
2016-06-20 14:05 Stefan Hajnoczi
2016-06-20 17:08 ` Peter Maydell
2013-06-28 14:24 Kevin Wolf
2013-04-22 11:31 Kevin Wolf
2012-03-12 15:19 Kevin Wolf
2012-03-13  2:23 ` Anthony Liguori
2011-09-20 11:11 Kevin Wolf
2011-09-20 20:39 ` Anthony Liguori
2010-09-21 15:21 Kevin Wolf
2010-09-21 22:51 ` 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=1477666165-17297-1-git-send-email-famz@redhat.com \
    --to=famz@redhat.com \
    --cc=peter.maydell@linaro.org \
    --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).