search for: d345175

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

Did you mean: d34515
2016 Jan 19
0
[PATCHv2 2/3] New API: part_set_disk_guid_random.
...T_ON_STDERR, + str_sgdisk, device, "-U", "R", NULL); + + if (r == -1) { + reply_with_error ("%s %s -U R: %s", str_sgdisk, device, err); + return -1; + } + + return 0; +} diff --git a/generator/actions.ml b/generator/actions.ml index 62c4839..d345175 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -12830,6 +12830,21 @@ or if C<guid> is not a valid GUID." }; Return the disk identifier (GUID) of a GPT-partitioned C<device>. Behaviour is undefined for other partition types." }; + { defaults with + name...
2016 Jan 20
1
[PATCHv2] New API: part_expand_gpt.
...p;err, COMMAND_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 +...
2016 Jan 19
4
[PATCHv2 0/3] Get/set disk GPT GUID API and support in virt-resize.
Some OSes (e.g. Windows Server 2012 R2) fail to boot after virt-resize due to changed disk guid. To fix it, we add new APIs: part_get_disk_guid part_set_disk_guid part_set_disk_guid_random We also preserve disk GUID in virt-resize. Maxim Perevedentsev (3): New API: part_get_disk_guid and part_set_disk_guid. New API: part_set_disk_guid_random. resize: preserve GPT disk GUID.