[Qemu-devel] [PULL 0/9] Block layer patches

Kevin Wolf posted 9 patches 5 years, 4 months ago
Test asan passed
Test checkpatch passed
Test docker-quick@centos7 passed
Test docker-mingw@fedora passed
Test docker-clang@ubuntu passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20181119142944.29061-1-kwolf@redhat.com
There is a newer version of this series
docs/interop/qcow2.txt     | 38 +++++++++++++++++-
block/qcow2.h              |  6 +++
block.c                    | 12 ++++++
block/file-posix.c         |  2 +-
block/qcow2-refcount.c     | 20 ++++++----
block/vvfat.c              |  6 +--
hw/block/fdc.c             |  2 +-
hw/block/nvme.c            |  7 ++++
tests/qemu-iotests/182     | 71 ++++++++++++++++++++++++++++++++++
tests/qemu-iotests/182.out |  9 +++++
tests/qemu-iotests/220     | 96 ++++++++++++++++++++++++++++++++++++++++++++++
tests/qemu-iotests/220.out | 54 ++++++++++++++++++++++++++
tests/qemu-iotests/group   |  1 +
13 files changed, 310 insertions(+), 14 deletions(-)
create mode 100755 tests/qemu-iotests/220
create mode 100644 tests/qemu-iotests/220.out
[Qemu-devel] [PULL 0/9] Block layer patches
Posted by Kevin Wolf 5 years, 4 months ago
The following changes since commit 9436e082de18b2fb2ceed2e9d1beef641ae64f23:

  MAINTAINERS: clarify some of the tags (2018-11-19 11:19:23 +0000)

are available in the Git repository at:

  git://repo.or.cz/qemu/kevin.git tags/for-upstream

for you to fetch changes up to 6d0a4a0fb5c8f10c8eb68b52cfda0082b00ae963:

  iotests: Test file-posix locking and reopen (2018-11-19 14:32:04 +0100)

----------------------------------------------------------------
Block layer patches:

- file-posix: Fix shared permission locks after reopen
- block: Fix error path for failed .bdrv_reopen_prepare
- qcow2: Catch invalid allocations when the image becomes too large
- vvfat/fdc/nvme: Fix segfaults and leaks

----------------------------------------------------------------
Eric Blake (3):
      qcow2: Document some maximum size constraints
      qcow2: Don't allow overflow during cluster allocation
      iotests: Add new test 220 for max compressed cluster offset

Kevin Wolf (1):
      vvfat: Fix memory leak

Li Qiang (1):
      nvme: fix oob access issue(CVE-2018-16847)

Mark Cave-Ayland (1):
      fdc: fix segfault in fdctrl_stop_transfer() when DMA is disabled

Max Reitz (3):
      block: Always abort reopen after prepare succeeded
      file-posix: Fix shared locks on reopen commit
      iotests: Test file-posix locking and reopen

 docs/interop/qcow2.txt     | 38 +++++++++++++++++-
 block/qcow2.h              |  6 +++
 block.c                    | 12 ++++++
 block/file-posix.c         |  2 +-
 block/qcow2-refcount.c     | 20 ++++++----
 block/vvfat.c              |  6 +--
 hw/block/fdc.c             |  2 +-
 hw/block/nvme.c            |  7 ++++
 tests/qemu-iotests/182     | 71 ++++++++++++++++++++++++++++++++++
 tests/qemu-iotests/182.out |  9 +++++
 tests/qemu-iotests/220     | 96 ++++++++++++++++++++++++++++++++++++++++++++++
 tests/qemu-iotests/220.out | 54 ++++++++++++++++++++++++++
 tests/qemu-iotests/group   |  1 +
 13 files changed, 310 insertions(+), 14 deletions(-)
 create mode 100755 tests/qemu-iotests/220
 create mode 100644 tests/qemu-iotests/220.out

Re: [Qemu-devel] [PULL 0/9] Block layer patches
Posted by Peter Maydell 5 years, 4 months ago
On 19 November 2018 at 14:29, Kevin Wolf <kwolf@redhat.com> wrote:
> The following changes since commit 9436e082de18b2fb2ceed2e9d1beef641ae64f23:
>
>   MAINTAINERS: clarify some of the tags (2018-11-19 11:19:23 +0000)
>
> are available in the Git repository at:
>
>   git://repo.or.cz/qemu/kevin.git tags/for-upstream
>
> for you to fetch changes up to 6d0a4a0fb5c8f10c8eb68b52cfda0082b00ae963:
>
>   iotests: Test file-posix locking and reopen (2018-11-19 14:32:04 +0100)
>
> ----------------------------------------------------------------
> Block layer patches:
>
> - file-posix: Fix shared permission locks after reopen
> - block: Fix error path for failed .bdrv_reopen_prepare
> - qcow2: Catch invalid allocations when the image becomes too large
> - vvfat/fdc/nvme: Fix segfaults and leaks
>

Applied, thanks.

-- PMM