mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-22 11:22:23 +00:00
logical: Increase the size of the data to wipe
Since a sector size may be larger than 512 bytes, let's just increase the size to wipe to 1MB rather than 2KB
This commit is contained in:
parent
c6aa81c65a
commit
d942bf6e9e
@ -100,7 +100,7 @@ virStorageBackendLogicalInitializeDevice(const char *path)
|
||||
* a whole disk as a PV. So we just blank them out regardless
|
||||
* rather than trying to figure out if we're a disk or partition
|
||||
*/
|
||||
if (virStorageBackendZeroPartitionTable(path, 4 * PV_BLANK_SECTOR_SIZE) < 0)
|
||||
if (virStorageBackendZeroPartitionTable(path, 1024 * 1024) < 0)
|
||||
return -1;
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user