Blame SOURCES/0128-v2v-Rename-check_free_space-check_guest_free_space.patch

e76f14
From 9482990df8ef561a4824e960c254075bac611027 Mon Sep 17 00:00:00 2001
e76f14
From: "Richard W.M. Jones" <rjones@redhat.com>
e76f14
Date: Thu, 23 Jun 2016 13:12:44 +0100
e76f14
Subject: [PATCH] v2v: Rename check_free_space -> check_guest_free_space.
e76f14
e76f14
(cherry picked from commit d8a465a14c3596a9fea53560bc7ad2ee6c3111bc)
e76f14
---
e76f14
 v2v/v2v.ml | 4 ++--
e76f14
 1 file changed, 2 insertions(+), 2 deletions(-)
e76f14
e76f14
diff --git a/v2v/v2v.ml b/v2v/v2v.ml
e76f14
index ebbfa68..f3eae43 100644
e76f14
--- a/v2v/v2v.ml
e76f14
+++ b/v2v/v2v.ml
e76f14
@@ -78,7 +78,7 @@ let rec main () =
e76f14
   let inspect = Inspect_source.inspect_source cmdline.root_choice g in
e76f14
 
e76f14
   let mpstats = get_mpstats g in
e76f14
-  check_free_space mpstats;
e76f14
+  check_guest_free_space mpstats;
e76f14
   (match conversion_mode with
e76f14
    | Copying (_, targets) ->
e76f14
        check_target_free_space mpstats source targets output
e76f14
@@ -327,7 +327,7 @@ and get_mpstats g =
e76f14
  * (RHBZ#1139543).  To avoid this situation, check there is some
e76f14
  * headroom.  Mainly we care about the root filesystem.
e76f14
  *)
e76f14
-and check_free_space mpstats =
e76f14
+and check_guest_free_space mpstats =
e76f14
   message (f_"Checking for sufficient free disk space in the guest");
e76f14
   List.iter (
e76f14
     fun { mp_path = mp;
e76f14
-- 
aa0300
2.7.4
e76f14