diff mbox

[v13,17/20] block: Workaround drive-backup sync=none for image locking

Message ID 20170420075237.18219-18-famz@redhat.com
State New
Headers show

Commit Message

Fam Zheng April 20, 2017, 7:52 a.m. UTC
Signed-off-by: Fam Zheng <famz@redhat.com>
---
 blockdev.c | 3 +++
 1 file changed, 3 insertions(+)
diff mbox

Patch

diff --git a/blockdev.c b/blockdev.c
index 4927914..5831b95 100644
--- a/blockdev.c
+++ b/blockdev.c
@@ -3223,6 +3223,9 @@  static BlockJob *do_drive_backup(DriveBackup *backup, BlockJobTxn *txn,
         }
     }
     if (backup->sync == MIRROR_SYNC_MODE_NONE) {
+        /* FIXME: block layer should really open target with BDRV_O_NO_BACKING
+         * and reuse source's backing chain, if they share one. */
+        flags |= BDRV_O_UNSAFE_READ;
         source = bs;
     }