search for: 1764569

Displaying 3 results from an estimated 3 matches for "1764569".

Did you mean: 1264569
2019 Nov 27
3
[v2v PATCH] v2v: require 100 availabe inodes on each filesystem (RHBZ#1764569)
...pstat chan { mp_dev = dev; mp_path = path; (* Conversion can fail if there is no space on the guest filesystems * (RHBZ#1139543). To avoid this situation, check there is some * headroom. Mainly we care about the root filesystem. + * + * Also make sure filesystems have available inodes. (RHBZ#1764569) *) and check_guest_free_space mpstats = message (f_"Checking for sufficient free disk space in the guest"); @@ -399,14 +401,21 @@ and check_guest_free_space mpstats = 10_000_000L in + (* Reasonable headroom for conversion operations. *) + let needed_inodes = 100L in +...
2019 Nov 27
0
Re: [v2v PATCH] v2v: require 100 availabe inodes on each filesystem (RHBZ#1764569)
On 11/27/19 11:00 AM, Pino Toscano wrote: In the subject: s/availabe/available/ also, is it necessary to stick RHBZ#... in the subject, or is that a better fit in the commit body? > Enough free space in a filesystem does not imply available inodes to > create/modify files on that filesystem. Hence, require at least 100 > available inodes on filesystems that can provide inode counts.
2019 Nov 28
1
[v2v PATCH v2] v2v: require 100 available inodes on each filesystem
Enough free space in a filesystem does not imply available inodes to create/modify files on that filesystem. Hence, require at least 100 available inodes on filesystems that can provide inode counts. Related to: RHBZ#1764569 --- docs/virt-v2v.pod | 3 +++ v2v/v2v.ml | 13 +++++++++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/docs/virt-v2v.pod b/docs/virt-v2v.pod index 6d677a45..1c884616 100644 --- a/docs/virt-v2v.pod +++ b/docs/virt-v2v.pod @@ -1353,6 +1353,9 @@ Minimum free space: 10 M...