Blob Blame History Raw
From 9482990df8ef561a4824e960c254075bac611027 Mon Sep 17 00:00:00 2001
From: "Richard W.M. Jones" <rjones@redhat.com>
Date: Thu, 23 Jun 2016 13:12:44 +0100
Subject: [PATCH] v2v: Rename check_free_space -> check_guest_free_space.

(cherry picked from commit d8a465a14c3596a9fea53560bc7ad2ee6c3111bc)
---
 v2v/v2v.ml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/v2v/v2v.ml b/v2v/v2v.ml
index ebbfa68..f3eae43 100644
--- a/v2v/v2v.ml
+++ b/v2v/v2v.ml
@@ -78,7 +78,7 @@ let rec main () =
   let inspect = Inspect_source.inspect_source cmdline.root_choice g in
 
   let mpstats = get_mpstats g in
-  check_free_space mpstats;
+  check_guest_free_space mpstats;
   (match conversion_mode with
    | Copying (_, targets) ->
        check_target_free_space mpstats source targets output
@@ -327,7 +327,7 @@ and get_mpstats g =
  * (RHBZ#1139543).  To avoid this situation, check there is some
  * headroom.  Mainly we care about the root filesystem.
  *)
-and check_free_space mpstats =
+and check_guest_free_space mpstats =
   message (f_"Checking for sufficient free disk space in the guest");
   List.iter (
     fun { mp_path = mp;
-- 
1.8.3.1