qemu-block
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PULL 00/35] Block patches


From: Hanna Reitz
Subject: [PULL 00/35] Block patches
Date: Tue, 12 Jul 2022 20:05:42 +0200

The following changes since commit 9548cbeffffd4253e38570d29b8cff0bf77c998f:

  iotests/copy-before-write: specify required_fmts (2022-07-12 13:21:02 +0530)

are available in the Git repository at:

  https://gitlab.com/hreitz/qemu.git tags/pull-block-2022-07-12

for you to fetch changes up to 85c4bf8aa6c93c24876e8870ae7cf8ab2e5a96cf:

  vl: Unlink absolute PID file path (2022-07-12 14:31:15 +0200)

----------------------------------------------------------------
Block patches:
- Refactoring for non-coroutine variants of bdrv/blk_co_* functions:
  Auto-generate more of them with the block coroutine wrapper generator
  script
- iotest fixes
- Both for the storage daemon and the system emulator: Fix PID file
  handling when daemonizing (store the absolute path and delete that on
  exit, which is necessary because daemonizing will change the working
  directory to /)

----------------------------------------------------------------
Alberto Faria (28):
  block: Add a 'flags' param to bdrv_{pread,pwrite,pwrite_sync}()
  block: Change bdrv_{pread,pwrite,pwrite_sync}() param order
  block: Make bdrv_{pread,pwrite}() return 0 on success
  crypto: Make block callbacks return 0 on success
  block: Make bdrv_co_pwrite() take a const buffer
  block: Make 'bytes' param of bdrv_co_{pread,pwrite,preadv,pwritev}()
    an int64_t
  block: Implement bdrv_{pread,pwrite,pwrite_zeroes}() using
    generated_co_wrapper
  block: Add bdrv_co_pwrite_sync()
  block: Use bdrv_co_pwrite_sync() when caller is coroutine_fn
  block/qcow2: Use bdrv_pwrite_sync() in qcow2_mark_dirty()
  block: Make blk_{pread,pwrite}() return 0 on success
  block: Add a 'flags' param to blk_pread()
  block: Change blk_{pread,pwrite}() param order
  block: Make 'bytes' param of blk_{pread,pwrite}() an int64_t
  block: Make blk_co_pwrite() take a const buffer
  block: Implement blk_{pread,pwrite}() using generated_co_wrapper
  block: Add blk_{preadv,pwritev}()
  block: Add blk_[co_]preadv_part()
  block: Export blk_pwritev_part() in block-backend-io.h
  block: Change blk_pwrite_compressed() param order
  block: Add blk_co_pwrite_compressed()
  block: Implement blk_pwrite_zeroes() using generated_co_wrapper
  block: Implement blk_pdiscard() using generated_co_wrapper
  block: Implement blk_flush() using generated_co_wrapper
  block: Add blk_co_ioctl()
  block: Add blk_co_truncate()
  block: Reorganize some declarations in block-backend-io.h
  block: Remove remaining unused symbols in coroutines.h

Hanna Reitz (5):
  qsd: Do not use error_report() before monitor_init
  iotests/297: Have mypy ignore unused ignores
  qsd: Unlink absolute PID file path
  vl: Conditionally register PID file unlink notifier
  vl: Unlink absolute PID file path

John Snow (2):
  tests/qemu-iotests: hotfix for 307, 223 output
  tests/qemu-iotests: skip 108 when FUSE is not loaded

 block/coroutines.h                   |  44 --------
 include/block/block-io.h             |  22 ++--
 include/block/block_int-io.h         |   4 +-
 include/crypto/block.h               |  32 +++---
 include/sysemu/block-backend-io.h    |  97 ++++++++++-------
 block.c                              |  10 +-
 block/blklogwrites.c                 |   6 +-
 block/block-backend.c                | 150 +++++++++++---------------
 block/bochs.c                        |  10 +-
 block/cloop.c                        |  12 +--
 block/commit.c                       |   4 +-
 block/crypto.c                       |  58 +++++-----
 block/dmg.c                          |  36 +++----
 block/export/fuse.c                  |   4 +-
 block/io.c                           |  55 +---------
 block/parallels-ext.c                |   6 +-
 block/parallels.c                    |  14 +--
 block/qcow.c                         |  55 +++++-----
 block/qcow2-bitmap.c                 |  14 +--
 block/qcow2-cache.c                  |   9 +-
 block/qcow2-cluster.c                |  19 ++--
 block/qcow2-refcount.c               |  58 +++++-----
 block/qcow2-snapshot.c               |  53 +++++-----
 block/qcow2.c                        |  84 +++++++--------
 block/qed.c                          |  21 ++--
 block/vdi.c                          |  20 ++--
 block/vhdx-log.c                     |  23 ++--
 block/vhdx.c                         |  56 +++++-----
 block/vmdk.c                         |  80 +++++++-------
 block/vpc.c                          |  35 +++---
 block/vvfat.c                        |  11 +-
 crypto/block-luks.c                  |   8 +-
 crypto/block.c                       |   6 +-
 hw/arm/allwinner-h3.c                |   2 +-
 hw/arm/aspeed.c                      |   2 +-
 hw/block/block.c                     |   2 +-
 hw/block/fdc.c                       |  20 ++--
 hw/block/hd-geometry.c               |   2 +-
 hw/block/m25p80.c                    |   2 +-
 hw/block/nand.c                      |  47 ++++----
 hw/block/onenand.c                   |  32 +++---
 hw/block/pflash_cfi01.c              |   4 +-
 hw/block/pflash_cfi02.c              |   4 +-
 hw/ide/atapi.c                       |   4 +-
 hw/misc/mac_via.c                    |   6 +-
 hw/misc/sifive_u_otp.c               |  14 +--
 hw/nvram/eeprom_at24c.c              |   8 +-
 hw/nvram/spapr_nvram.c               |  16 +--
 hw/nvram/xlnx-bbram.c                |   4 +-
 hw/nvram/xlnx-efuse.c                |   4 +-
 hw/ppc/pnv_pnor.c                    |   6 +-
 hw/sd/sd.c                           |   4 +-
 migration/block.c                    |   8 +-
 nbd/server.c                         |   8 +-
 qemu-img.c                           |  41 +++----
 qemu-io-cmds.c                       |  20 ++--
 softmmu/vl.c                         |  42 ++++++--
 storage-daemon/qemu-storage-daemon.c |  17 ++-
 tests/unit/test-block-iothread.c     | 153 ++++++++++++++++++++++++---
 tests/unit/test-crypto-block.c       |  38 +++----
 block/meson.build                    |   1 +
 tests/qemu-iotests/108               |   5 +
 tests/qemu-iotests/223.out           |   4 +-
 tests/qemu-iotests/307.out           |   4 +-
 tests/qemu-iotests/mypy.ini          |   2 +-
 65 files changed, 856 insertions(+), 786 deletions(-)

-- 
2.35.3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]