Displaying 9 results from an estimated 9 matches for "do_part_expand_gpt".
2019 Apr 15
1
[PATCH] daemon: drop error message check in do_part_expand_gpt
...| 20 +-------------------
tests/gdisk/test-expand-gpt.pl | 24 +++++++++++++++++++++---
2 files changed, 22 insertions(+), 22 deletions(-)
diff --git a/daemon/parted.c b/daemon/parted.c
index 070ed4790..2cc714d64 100644
--- a/daemon/parted.c
+++ b/daemon/parted.c
@@ -699,26 +699,8 @@ do_part_expand_gpt(const char *device)
{
CLEANUP_FREE char *err = NULL;
- /* If something is broken, sgdisk may try to correct it.
- * (e.g. recreate partition table and so on).
- * We do not want such behavior, so dry-run at first.*/
int r = commandf (NULL, &err, COMMAND_FLAG_FOLD_STDOUT_ON_STDERR,...
2015 Dec 01
3
[PATCHv2] New API: part_expand_gpt.
...n/test-expand-gpt.pl
diff --git a/daemon/parted.c b/daemon/parted.c
index df6b7e7..033c136 100644
--- a/daemon/parted.c
+++ b/daemon/parted.c
@@ -928,3 +928,36 @@ do_part_get_mbr_part_type (const char *device, int partnum)
reply_with_error ("strdup failed");
return NULL;
}
+
+int
+do_part_expand_gpt(const char *device)
+{
+ CLEANUP_FREE char *err = NULL;
+
+ /* If something is broken, sgdisk may try to correct it.
+ * (e.g. recreate partition table and so on).
+ * We do not want such behavior, so dry-run at first.*/
+ int r = commandf (NULL, &err, COMMAND_FLAG_FOLD_STDOUT_ON_STDERR,...
2015 Nov 25
1
[PATCH] New API: part_expand_gpt.
...ns(+), 1 deletion(-)
diff --git a/daemon/parted.c b/daemon/parted.c
index df6b7e7..033c136 100644
--- a/daemon/parted.c
+++ b/daemon/parted.c
@@ -928,3 +928,36 @@ do_part_get_mbr_part_type (const char *device, int partnum)
reply_with_error ("strdup failed");
return NULL;
}
+
+int
+do_part_expand_gpt(const char *device)
+{
+ CLEANUP_FREE char *err = NULL;
+
+ /* If something is broken, sgdisk may try to correct it.
+ * (e.g. recreate partition table and so on).
+ * We do not want such behavior, so dry-run at first.*/
+ int r = commandf (NULL, &err, COMMAND_FLAG_FOLD_STDOUT_ON_STDERR,...
2015 Dec 22
0
Re: [PATCHv2] New API: part_expand_gpt.
...daemon/parted.c
> index df6b7e7..033c136 100644
> --- a/daemon/parted.c
> +++ b/daemon/parted.c
> @@ -928,3 +928,36 @@ do_part_get_mbr_part_type (const char *device, int partnum)
> reply_with_error ("strdup failed");
> return NULL;
> }
> +
> +int
> +do_part_expand_gpt(const char *device)
> +{
> + CLEANUP_FREE char *err = NULL;
> +
> + /* If something is broken, sgdisk may try to correct it.
> + * (e.g. recreate partition table and so on).
> + * We do not want such behavior, so dry-run at first.*/
> + int r = commandf (NULL, &err,...
2016 Jan 20
1
[PATCHv2] New API: part_expand_gpt.
...sertions(+), 2 deletions(-)
create mode 100755 tests/daemon/test-expand-gpt.pl
diff --git a/daemon/parted.c b/daemon/parted.c
index 22cd92b..00ae424 100644
--- a/daemon/parted.c
+++ b/daemon/parted.c
@@ -1003,3 +1003,37 @@ do_part_set_disk_guid_random (const char *device)
return 0;
}
+
+int
+do_part_expand_gpt(const char *device)
+{
+ CLEANUP_FREE char *err = NULL;
+
+ /* If something is broken, sgdisk may try to correct it.
+ * (e.g. recreate partition table and so on).
+ * We do not want such behavior, so dry-run at first.*/
+ int r = commandf (NULL, &err, COMMAND_FLAG_FOLD_STDOUT_ON_STDERR,...
2017 Jul 27
0
[PATCH v2] daemon: Remove GUESTFSD_EXT_CMD.
..."sgdisk", device, "-U", "R", NULL);
if (r == -1) {
- reply_with_error ("%s %s -U R: %s", str_sgdisk, device, err);
+ reply_with_error ("%s %s -U R: %s", "sgdisk", device, err);
return -1;
}
@@ -1022,25 +1018,25 @@ do_part_expand_gpt(const char *device)
* (e.g. recreate partition table and so on).
* We do not want such behavior, so dry-run at first.*/
int r = commandf (NULL, &err, COMMAND_FLAG_FOLD_STDOUT_ON_STDERR,
- str_sgdisk, "--pretend", "-e", device, NULL);
+...
2017 Jul 24
0
[PATCH 2/2] daemon: Replace GUESTFSD_EXT_CMD with --print-external-commands.
..."sgdisk", device, "-U", "R", NULL);
if (r == -1) {
- reply_with_error ("%s %s -U R: %s", str_sgdisk, device, err);
+ reply_with_error ("%s %s -U R: %s", "sgdisk", device, err);
return -1;
}
@@ -1022,25 +1020,25 @@ do_part_expand_gpt(const char *device)
* (e.g. recreate partition table and so on).
* We do not want such behavior, so dry-run at first.*/
int r = commandf (NULL, &err, COMMAND_FLAG_FOLD_STDOUT_ON_STDERR,
- str_sgdisk, "--pretend", "-e", device, NULL);
+...
2017 Jul 27
3
[PATCH v2] daemon: Remove GUESTFSD_EXT_CMD.
This is a simpler patch that removes GUESTFSD_EXT_CMD completely.
2017 Jul 24
6
[PATCH 0/2] daemon: Replace GUESTFSD_EXT_CMD with --print-external-commands.
Replace GUESTFSD_EXT_CMD with a command line option
‘./guestfsd --print-external-commands’