qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/9] Block layer patches
@ 2018-11-19 14:29 Kevin Wolf
  2018-11-19 14:29 ` [Qemu-devel] [PULL 1/9] nvme: fix oob access issue(CVE-2018-16847) Kevin Wolf
                   ` (9 more replies)
  0 siblings, 10 replies; 13+ messages in thread
From: Kevin Wolf @ 2018-11-19 14:29 UTC (permalink / raw)
  To: qemu-block; +Cc: kwolf, peter.maydell, qemu-devel

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

^ permalink raw reply	[flat|nested] 13+ messages in thread
* [Qemu-devel] [PULL 0/9] Block layer patches
@ 2019-04-02 12:48 Kevin Wolf
  2019-04-02 13:51 ` Peter Maydell
  0 siblings, 1 reply; 13+ messages in thread
From: Kevin Wolf @ 2019-04-02 12:48 UTC (permalink / raw)
  To: qemu-block; +Cc: kwolf, peter.maydell, qemu-devel

The following changes since commit d61d1a1fb2f1db6c54651844a28389c523f3f8c7:

  Merge remote-tracking branch 'remotes/kraxel/tags/fixes-20190402-pull-request' into staging (2019-04-02 08:18:24 +0100)

are available in the Git repository at:

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

for you to fetch changes up to f18957b854495129f2e8d6838df3bf47d1c1479c:

  tests/qemu-iotests/235: Allow fallback to tcg (2019-04-02 12:04:56 +0200)

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

- file-posix: Ignore unlock failure instead of crashing
- gluster: Limit the transfer size to 512 MiB
- stream: Fix backing chain freezing
- qemu-img: Enable BDRV_REQ_MAY_UNMAP for zero writes in convert
- iotests fixes

----------------------------------------------------------------
Alberto Garcia (3):
      block: continue until base is found in bdrv_freeze_backing_chain() et al
      block: freeze the backing chain earlier in stream_start()
      block: test block-stream with a base node that is used by block-commit

Nir Soffer (1):
      qemu-img: Enable BDRV_REQ_MAY_UNMAP in convert

Stefano Garzarella (1):
      block/gluster: limit the transfer size to 512 MiB

Thomas Huth (3):
      iotests: Fix test 200 on s390x without virtio-pci
      tests/qemu-iotests: Remove redundant COPYING file
      tests/qemu-iotests/235: Allow fallback to tcg

Vladimir Sementsov-Ogievskiy (1):
      block/file-posix: do not fail on unlock bytes

 block.c                    |  21 ++-
 block/file-posix.c         |  12 ++
 block/gluster.c            |  16 +++
 block/stream.c             |  13 +-
 qemu-img.c                 |   3 +-
 tests/qemu-iotests/030     |  17 +++
 tests/qemu-iotests/030.out |   4 +-
 tests/qemu-iotests/200     |  14 +-
 tests/qemu-iotests/235     |   2 +-
 tests/qemu-iotests/COPYING | 339 ---------------------------------------------
 10 files changed, 82 insertions(+), 359 deletions(-)
 delete mode 100644 tests/qemu-iotests/COPYING

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

end of thread, other threads:[~2019-04-02 13:51 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-19 14:29 [Qemu-devel] [PULL 0/9] Block layer patches Kevin Wolf
2018-11-19 14:29 ` [Qemu-devel] [PULL 1/9] nvme: fix oob access issue(CVE-2018-16847) Kevin Wolf
2018-11-19 14:29 ` [Qemu-devel] [PULL 2/9] fdc: fix segfault in fdctrl_stop_transfer() when DMA is disabled Kevin Wolf
2018-11-19 14:29 ` [Qemu-devel] [PULL 3/9] vvfat: Fix memory leak Kevin Wolf
2018-11-19 14:29 ` [Qemu-devel] [PULL 4/9] qcow2: Document some maximum size constraints Kevin Wolf
2018-11-19 14:29 ` [Qemu-devel] [PULL 5/9] qcow2: Don't allow overflow during cluster allocation Kevin Wolf
2018-11-19 14:29 ` [Qemu-devel] [PULL 6/9] iotests: Add new test 220 for max compressed cluster offset Kevin Wolf
2018-11-19 14:29 ` [Qemu-devel] [PULL 7/9] block: Always abort reopen after prepare succeeded Kevin Wolf
2018-11-19 14:29 ` [Qemu-devel] [PULL 8/9] file-posix: Fix shared locks on reopen commit Kevin Wolf
2018-11-19 14:29 ` [Qemu-devel] [PULL 9/9] iotests: Test file-posix locking and reopen Kevin Wolf
2018-11-19 15:03 ` [Qemu-devel] [PULL 0/9] Block layer patches Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2019-04-02 12:48 Kevin Wolf
2019-04-02 13:51 ` Peter Maydell

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