|
|
6d3351 |
From f4b39613c3c345e33fa749911f34127cf91c07fc Mon Sep 17 00:00:00 2001
|
|
|
6d3351 |
Message-Id: <f4b39613c3c345e33fa749911f34127cf91c07fc@dist-git>
|
|
|
6d3351 |
From: John Ferlan <jferlan@redhat.com>
|
|
|
6d3351 |
Date: Wed, 26 Apr 2017 08:41:13 -0400
|
|
|
6d3351 |
Subject: [PATCH] logical: Increase the size of the data to wipe
|
|
|
6d3351 |
|
|
|
6d3351 |
https://bugzilla.redhat.com/show_bug.cgi?id=1439132
|
|
|
6d3351 |
https://bugzilla.redhat.com/show_bug.cgi?id=1373711
|
|
|
6d3351 |
|
|
|
6d3351 |
Since a sector size may be larger than 512 bytes, let's just increase
|
|
|
6d3351 |
the size to wipe to 1MB rather than 2KB
|
|
|
6d3351 |
|
|
|
6d3351 |
(cherry picked from commit d942bf6e9e8e3991808ca5185098257e84acab5d)
|
|
|
6d3351 |
Signed-off-by: John Ferlan <jferlan@redhat.com>
|
|
|
6d3351 |
Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
|
|
|
6d3351 |
---
|
|
|
6d3351 |
src/storage/storage_backend_logical.c | 2 +-
|
|
|
6d3351 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
6d3351 |
|
|
|
6d3351 |
diff --git a/src/storage/storage_backend_logical.c b/src/storage/storage_backend_logical.c
|
|
|
6d3351 |
index a8650368b..ed26c2450 100644
|
|
|
6d3351 |
--- a/src/storage/storage_backend_logical.c
|
|
|
6d3351 |
+++ b/src/storage/storage_backend_logical.c
|
|
|
6d3351 |
@@ -100,7 +100,7 @@ virStorageBackendLogicalInitializeDevice(const char *path)
|
|
|
6d3351 |
* a whole disk as a PV. So we just blank them out regardless
|
|
|
6d3351 |
* rather than trying to figure out if we're a disk or partition
|
|
|
6d3351 |
*/
|
|
|
6d3351 |
- if (virStorageBackendZeroPartitionTable(path, 4 * PV_BLANK_SECTOR_SIZE) < 0)
|
|
|
6d3351 |
+ if (virStorageBackendZeroPartitionTable(path, 1024 * 1024) < 0)
|
|
|
6d3351 |
return -1;
|
|
|
6d3351 |
|
|
|
6d3351 |
/*
|
|
|
6d3351 |
--
|
|
|
6d3351 |
2.12.2
|
|
|
6d3351 |
|