Displaying 2 results from an estimated 2 matches for "8ae3dec".
Did you mean:
8173dec
2016 Aug 12
0
[PATCH 2/2] v2v: Add -o discard option when fstrimming.
...im to
work. I'm not actually sure if this is true, but it's what
virt-sparsify --in-place does, and that utility has been tested a lot
more in regards to trimming.
---
v2v/v2v.ml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/v2v/v2v.ml b/v2v/v2v.ml
index 8365aae..8ae3dec 100644
--- a/v2v/v2v.ml
+++ b/v2v/v2v.ml
@@ -393,7 +393,10 @@ and do_fstrim g inspect =
List.iter (
fun dev ->
g#umount_all ();
- let mounted = try g#mount dev "/"; true with G.Error _ -> false in
+ let mounted =
+ try g#mount_options "discard&qu...
2016 Aug 12
4
[PATCH 1/2] v2v: Make fstrim warning clearer (RHBZ#1366456).
This reverts the change made for RHBZ#1168144. The warning is now
always displayed.
It would be nice to make the warning actionable, but there is not a
lot that end users can do since fstrim is such a complex topic
interacting with all filesystem and storage layers.
---
v2v/v2v.ml | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/v2v/v2v.ml b/v2v/v2v.ml
index