Merge "Enable out-of-order writes when writing whole disk images"

This commit is contained in:
Zuul
2021-05-25 13:03:29 +00:00
committed by Gerrit Code Review
2 changed files with 6 additions and 1 deletions

View File

@@ -49,7 +49,7 @@ log "Imaging $IMAGEFILE to $DEVICE"
# limit the memory usage for qemu-img to 2 GiB
ulimit -v 2097152
qemu-img convert -t directsync -O host_device $IMAGEFILE $DEVICE
qemu-img convert -t directsync -O host_device -W $IMAGEFILE $DEVICE
sync
log "${DEVICE} imaged successfully!"

View File

@@ -0,0 +1,5 @@
---
fixes:
- |
Permits out-of-order writes when converting a whole disk images to improve
performance.