Displaying 3 results from an estimated 3 matches for "50_000_000l".
Did you mean:
10_000_000l
2017 Nov 06
2
[PATCH] v2v: rework free space check in guest mountpoints
...exists (fun { mp_path } -> mp_path = "/boot") mpstats in
+
+ let needed_bytes_for_mp = function
+ | "/boot"
+ | "/" when not has_boot ->
+ (* We usually regenerate the initramfs, which has a
+ * typical size of 20-30MB. Hence:
+ *)
+ 50_000_000L
+ | "/" ->
+ (* We may install some packages, and they would usually go
+ * on the root filesystem.
+ *)
+ 20_000_000L
+ | _ ->
+ (* For everything else, just make sure there is some free space. *)
+ 10_000_000L
+ in
+
List.iter (
- fun {...
2017 Nov 06
0
Re: [PATCH] v2v: rework free space check in guest mountpoints
..."/boot") mpstats in
> +
> + let needed_bytes_for_mp = function
> + | "/boot"
> + | "/" when not has_boot ->
> + (* We usually regenerate the initramfs, which has a
> + * typical size of 20-30MB. Hence:
> + *)
> + 50_000_000L
> + | "/" ->
> + (* We may install some packages, and they would usually go
> + * on the root filesystem.
> + *)
> + 20_000_000L
> + | _ ->
> + (* For everything else, just make sure there is some free space. *)
> + 10_00...
2015 Aug 11
41
[PATCH v2 00/17] v2v: add --in-place mode
This series is a second attempt to add a mode of virt-v2v operation
where it leaves the config and disk image conversion, rollback on
errors, registering with the destination hypervisor, etc. to a
third-party toolset, and performs only tuning of the guest OS to run in
the KVM-based hypervisor.
The first 14 patches are just refactoring and rearrangement of the code,
factoring the implementation