search for: 75d3fc5

Displaying 2 results from an estimated 2 matches for "75d3fc5".

Did you mean: 6bd3fc5
2016 Jan 25
1
[PATCH] actions: expand partitions for btrfs_image test
...0M are not enough for a btrfs filesystem; hence double the size of the partitions created in the test of btrfs_image, so now 200M are enough for btrfs. --- generator/actions.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generator/actions.ml b/generator/actions.ml index 75d3fc5..9ea5736 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -12680,8 +12680,8 @@ This enable skinny metadata extent refs." }; tests = [ InitEmpty, Always, TestRun ( [["part_init"; "/dev/sda"; "mbr"]; - ["part_add&quot...
2016 Jan 20
1
[PATCHv2] New API: part_expand_gpt.
...MMAND_FLAG_FOLD_STDOUT_ON_STDERR, + str_sgdisk, "-e", device, NULL); + + if (r == -1) { + reply_with_error ("%s -e %s: %s", str_sgdisk, device, err); + return -1; + } + + return 0; +} diff --git a/generator/actions.ml b/generator/actions.ml index d345175..75d3fc5 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -12845,6 +12845,20 @@ Set the disk identifier (GUID) of a GPT-partitioned C<device> to a randomly generated value. Return an error if the partition table of C<device> isn't GPT." }; + { defaults with + name...