qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Richard Henderson <richard.henderson@linaro.org>
To: Hanna Reitz <hreitz@redhat.com>, qemu-block@nongnu.org
Cc: Kevin Wolf <kwolf@redhat.com>,
	Peter Maydell <peter.maydell@linaro.org>,
	qemu-devel@nongnu.org
Subject: Re: [PULL v2 00/13] Block patches
Date: Tue, 16 Nov 2021 15:45:33 +0100	[thread overview]
Message-ID: <64fa99ec-8a61-5420-b391-7e79e29b4cae@linaro.org> (raw)
In-Reply-To: <20211116130618.700441-1-hreitz@redhat.com>

On 11/16/21 2:06 PM, Hanna Reitz wrote:
> The following changes since commit 42f6c9179be4401974dd3a75ee72defd16b5092d:
> 
>    Merge tag 'pull-ppc-20211112' of https://github.com/legoater/qemu into staging (2021-11-12 12:28:25 +0100)
> 
> are available in the Git repository at:
> 
>    https://gitlab.com/hreitz/qemu.git tags/pull-block-2021-11-16
> 
> for you to fetch changes up to 5dbd0ce115c7720268e653fe928bb6a0c1314a80:
> 
>    file-posix: Fix alignment after reopen changing O_DIRECT (2021-11-16 11:30:29 +0100)
> 
> ----------------------------------------------------------------
> Block patches for 6.2.0-rc1:
> - Fixes to image streaming job and block layer reconfiguration to make
>    iotest 030 pass again
> - docs: Deprecate incorrectly typed device_add arguments
> - file-posix: Fix alignment after reopen changing O_DIRECT
> 
> ----------------------------------------------------------------
> v2:
> - Fixed iotest 142 (modified by "file-posix: Fix alignment after reopen
>    changing O_DIRECT") -- at least I hope so: for me, it now passes on a
>    4k block device, and the gitlab pipeline passed, too
> 
> - Note that because I had to modify Kevin's pull request, I did not want
>    to merge it partially (with a merge commit), but instead decided to
>    apply all patches from the pull request mails (including their message
>    IDs)
> 
> ----------------------------------------------------------------
> Hanna Reitz (10):
>    stream: Traverse graph after modification
>    block: Manipulate children list in .attach/.detach
>    block: Unite remove_empty_child and child_free
>    block: Drop detached child from ignore list
>    block: Pass BdrvChild ** to replace_child_noperm
>    block: Restructure remove_file_or_backing_child()
>    transactions: Invoke clean() after everything else
>    block: Let replace_child_tran keep indirect pointer
>    block: Let replace_child_noperm free children
>    iotests/030: Unthrottle parallel jobs in reverse
> 
> Kevin Wolf (2):
>    docs: Deprecate incorrectly typed device_add arguments
>    file-posix: Fix alignment after reopen changing O_DIRECT
> 
> Stefan Hajnoczi (1):
>    softmmu/qdev-monitor: fix use-after-free in qdev_set_id()
> 
>   docs/about/deprecated.rst   |  14 +++
>   include/qemu/transactions.h |   3 +
>   block.c                     | 233 +++++++++++++++++++++++++++---------
>   block/file-posix.c          |  20 +++-
>   block/stream.c              |   7 +-
>   softmmu/qdev-monitor.c      |   2 +-
>   util/transactions.c         |   8 +-
>   tests/qemu-iotests/030      |  11 +-
>   tests/qemu-iotests/142      |  29 +++++
>   tests/qemu-iotests/142.out  |  18 +++
>   10 files changed, 279 insertions(+), 66 deletions(-)

Applied, thanks.

r~


      parent reply	other threads:[~2021-11-16 14:47 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-16 13:06 [PULL v2 00/13] Block patches Hanna Reitz
2021-11-16 13:06 ` [PULL v2 01/13] stream: Traverse graph after modification Hanna Reitz
2021-11-16 13:06 ` [PULL v2 02/13] block: Manipulate children list in .attach/.detach Hanna Reitz
2021-11-16 13:06 ` [PULL v2 03/13] block: Unite remove_empty_child and child_free Hanna Reitz
2021-11-16 13:06 ` [PULL v2 04/13] block: Drop detached child from ignore list Hanna Reitz
2021-11-16 13:06 ` [PULL v2 05/13] block: Pass BdrvChild ** to replace_child_noperm Hanna Reitz
2021-11-16 13:06 ` [PULL v2 06/13] block: Restructure remove_file_or_backing_child() Hanna Reitz
2021-11-16 13:06 ` [PULL v2 07/13] transactions: Invoke clean() after everything else Hanna Reitz
2021-11-16 13:06 ` [PULL v2 08/13] block: Let replace_child_tran keep indirect pointer Hanna Reitz
2021-11-16 13:06 ` [PULL v2 09/13] block: Let replace_child_noperm free children Hanna Reitz
2021-11-16 13:06 ` [PULL v2 10/13] iotests/030: Unthrottle parallel jobs in reverse Hanna Reitz
2021-11-16 13:06 ` [PULL v2 11/13] docs: Deprecate incorrectly typed device_add arguments Hanna Reitz
2021-11-16 13:06 ` [PULL v2 12/13] softmmu/qdev-monitor: fix use-after-free in qdev_set_id() Hanna Reitz
2021-11-16 13:06 ` [PULL v2 13/13] file-posix: Fix alignment after reopen changing O_DIRECT Hanna Reitz
2021-11-16 14:45 ` Richard Henderson [this message]

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=64fa99ec-8a61-5420-b391-7e79e29b4cae@linaro.org \
    --to=richard.henderson@linaro.org \
    --cc=hreitz@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-block@nongnu.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).