[Qemu-devel] [PULL v2 00/10] Block patches

Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20180831143241.31787-1-mreitz@redhat.com
Test docker-clang@ubuntu failed
Test checkpatch passed
There is a newer version of this series
include/qemu/job.h        | 70 ++++++++++++++++-----------------
block/backup.c            | 81 ++++++++++++++++-----------------------
block/commit.c            | 29 +++++---------
block/create.c            | 19 +++------
block/mirror.c            | 39 ++++++++-----------
block/stream.c            | 29 ++++++--------
job-qmp.c                 |  5 ++-
job.c                     | 73 ++++++++++++-----------------------
tests/test-bdrv-drain.c   | 14 +++----
tests/test-blockjob-txn.c | 25 +++++-------
tests/test-blockjob.c     | 17 ++++----
trace-events              |  2 +-
12 files changed, 161 insertions(+), 242 deletions(-)
[Qemu-devel] [PULL v2 00/10] Block patches
Posted by Max Reitz 6 years, 8 months ago
The following changes since commit 19b599f7664b2ebfd0f405fb79c14dd241557452:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-error-2018-08-27-v2' into staging (2018-08-27 16:44:20 +0100)

are available in the Git repository at:

  https://git.xanclic.moe/XanClic/qemu.git tags/pull-block-2018-08-31-v2

for you to fetch changes up to e21a1c9831fc80ae3f3c1affdfa43350035d8588:

  jobs: remove job_defer_to_main_loop (2018-08-31 16:28:33 +0200)

----------------------------------------------------------------
Block patches:
- (Block) job exit refactoring, part 1
  (removing job_defer_to_main_loop())
- test-bdrv-drain leak fix

----------------------------------------------------------------
John Snow (9):
  jobs: change start callback to run callback
  jobs: canonize Error object
  jobs: add exit shim
  block/commit: utilize job_exit shim
  block/mirror: utilize job_exit shim
  jobs: utilize job_exit shim
  block/backup: make function variables consistently named
  jobs: remove ret argument to job_completed; privatize it
  jobs: remove job_defer_to_main_loop

Marc-André Lureau (1):
  tests: fix bdrv-drain leak

 include/qemu/job.h        | 70 ++++++++++++++++-----------------
 block/backup.c            | 81 ++++++++++++++++-----------------------
 block/commit.c            | 29 +++++---------
 block/create.c            | 19 +++------
 block/mirror.c            | 39 ++++++++-----------
 block/stream.c            | 29 ++++++--------
 job-qmp.c                 |  5 ++-
 job.c                     | 73 ++++++++++++-----------------------
 tests/test-bdrv-drain.c   | 14 +++----
 tests/test-blockjob-txn.c | 25 +++++-------
 tests/test-blockjob.c     | 17 ++++----
 trace-events              |  2 +-
 12 files changed, 161 insertions(+), 242 deletions(-)

-- 
2.17.1


Re: [Qemu-devel] [PULL v2 00/10] Block patches
Posted by Peter Maydell 6 years, 7 months ago
On 31 August 2018 at 15:32, Max Reitz <mreitz@redhat.com> wrote:
> The following changes since commit 19b599f7664b2ebfd0f405fb79c14dd241557452:
>
>   Merge remote-tracking branch 'remotes/armbru/tags/pull-error-2018-08-27-v2' into staging (2018-08-27 16:44:20 +0100)
>
> are available in the Git repository at:
>
>   https://git.xanclic.moe/XanClic/qemu.git tags/pull-block-2018-08-31-v2
>
> for you to fetch changes up to e21a1c9831fc80ae3f3c1affdfa43350035d8588:
>
>   jobs: remove job_defer_to_main_loop (2018-08-31 16:28:33 +0200)
>
> ----------------------------------------------------------------
> Block patches:
> - (Block) job exit refactoring, part 1
>   (removing job_defer_to_main_loop())
> - test-bdrv-drain leak fix
>
Applied, thanks.

-- PMM