All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v14 00/14] backup-top filter driver for backup
@ 2019-09-26 10:26 Vladimir Sementsov-Ogievskiy
  2019-09-26 10:26 ` [PATCH v14 01/14] block/backup: fix max_transfer handling for copy_range Vladimir Sementsov-Ogievskiy
                   ` (13 more replies)
  0 siblings, 14 replies; 16+ messages in thread
From: Vladimir Sementsov-Ogievskiy @ 2019-09-26 10:26 UTC (permalink / raw)
  To: qemu-block
  Cc: kwolf, vsementsov, wencongyang2, xiechanglong.d, qemu-devel,
	armbru, den, mreitz, jsnow

Hi all!

These series introduce backup-top driver. It's a filter-node, which
do copy-before-write operation. Mirror uses filter-node for handling
guest writes, let's move to filter-node (from write-notifiers) for
backup too.

v13 is queued in Max's branch, but I understand that new range locks
don't work in backup case. So, I've to resend.

v14: Drop range locks, keep old good in-flight requests waiting

12: new patch
14: use old request-waiting scheme instead of range locks

Vladimir Sementsov-Ogievskiy (14):
  block/backup: fix max_transfer handling for copy_range
  block/backup: fix backup_cow_with_offload for last cluster
  block/backup: split shareable copying part from backup_do_cow
  block/backup: improve comment about image fleecing
  block/backup: introduce BlockCopyState
  block/backup: fix block-comment style
  block: move block_copy from block/backup.c to separate file
  block: teach bdrv_debug_breakpoint skip filters with backing
  iotests: prepare 124 and 257 bitmap querying for backup-top filter
  iotests: 257: drop unused Drive.device field
  iotests: 257: drop device_add
  block: move in-flight requests handling from backup to block-copy
  block: introduce backup-top filter driver
  block/backup: use backup-top instead of write notifiers

 qapi/block-core.json          |   8 +-
 block/backup-top.h            |  37 ++
 include/block/block-copy.h    |  92 +++++
 include/block/block_int.h     |   1 +
 block.c                       |  34 +-
 block/backup-top.c            | 240 ++++++++++++
 block/backup.c                | 440 ++++-----------------
 block/block-copy.c            | 370 ++++++++++++++++++
 block/replication.c           |   2 +-
 blockdev.c                    |   1 +
 block/Makefile.objs           |   3 +
 block/trace-events            |  14 +-
 tests/qemu-iotests/056        |   8 +-
 tests/qemu-iotests/124        |  83 ++--
 tests/qemu-iotests/257        |  91 ++---
 tests/qemu-iotests/257.out    | 714 ++++++++++++++--------------------
 tests/qemu-iotests/iotests.py |  27 ++
 17 files changed, 1256 insertions(+), 909 deletions(-)
 create mode 100644 block/backup-top.h
 create mode 100644 include/block/block-copy.h
 create mode 100644 block/backup-top.c
 create mode 100644 block/block-copy.c

-- 
2.21.0



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

end of thread, other threads:[~2019-09-26 10:49 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-26 10:26 [PATCH v14 00/14] backup-top filter driver for backup Vladimir Sementsov-Ogievskiy
2019-09-26 10:26 ` [PATCH v14 01/14] block/backup: fix max_transfer handling for copy_range Vladimir Sementsov-Ogievskiy
2019-09-26 10:26 ` [PATCH v14 02/14] block/backup: fix backup_cow_with_offload for last cluster Vladimir Sementsov-Ogievskiy
2019-09-26 10:26 ` [PATCH v14 03/14] block/backup: split shareable copying part from backup_do_cow Vladimir Sementsov-Ogievskiy
2019-09-26 10:26 ` [PATCH v14 04/14] block/backup: improve comment about image fleecing Vladimir Sementsov-Ogievskiy
2019-09-26 10:26 ` [PATCH v14 05/14] block/backup: introduce BlockCopyState Vladimir Sementsov-Ogievskiy
2019-09-26 10:26 ` [PATCH v14 06/14] block/backup: fix block-comment style Vladimir Sementsov-Ogievskiy
2019-09-26 10:26 ` [PATCH v14 07/14] block: move block_copy from block/backup.c to separate file Vladimir Sementsov-Ogievskiy
2019-09-26 10:26 ` [PATCH v14 08/14] block: teach bdrv_debug_breakpoint skip filters with backing Vladimir Sementsov-Ogievskiy
2019-09-26 10:26 ` [PATCH v14 09/14] iotests: prepare 124 and 257 bitmap querying for backup-top filter Vladimir Sementsov-Ogievskiy
2019-09-26 10:26 ` [PATCH v14 10/14] iotests: 257: drop unused Drive.device field Vladimir Sementsov-Ogievskiy
2019-09-26 10:26 ` [PATCH v14 11/14] iotests: 257: drop device_add Vladimir Sementsov-Ogievskiy
2019-09-26 10:26 ` [PATCH v14 12/14] block: move in-flight requests handling from backup to block-copy Vladimir Sementsov-Ogievskiy
2019-09-26 10:26 ` [PATCH v14 13/14] block: introduce backup-top filter driver Vladimir Sementsov-Ogievskiy
2019-09-26 10:26 ` [PATCH v14 14/14] block/backup: use backup-top instead of write notifiers Vladimir Sementsov-Ogievskiy
2019-09-26 10:29   ` Vladimir Sementsov-Ogievskiy

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.