Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Just like qemu-img convert uses bdrv_has_zero_init() in order to check whether
it can assume that not explicitly written clusters are zeroed, mirroring needs
to do the same. Otherwise mirroring to a raw block device with uninitialised
data doesn't yield the correct result.
Manual test case:
$ qemu-img create -f qcow2 /tmp/test.qcow2 64M
$ dd if=/dev/urandom of=/tmp/test.raw bs=1M count=64
$ sudo losetup /dev/loop0 /tmp/test.raw
$ sudo chmod 666 /dev/loop0
$ x86_64-softmmu/qemu-system-x86_64 -hda /tmp/test.qcow2 -monitor stdio
(qemu) drive_mirror ide0-hd0 /dev/loop0 raw
Formatting '/dev/loop0', fmt=raw size=67108864
(qemu) block_job_complete ide0-hd0
(qemu) quit
$ sudo hexdump -n 512 /dev/loop0
Expected result:
Only zero bytes are on the block device
Actual result:
The random bytes are still there