search for: df6b7e7

Displaying 4 results from an estimated 4 matches for "df6b7e7".

2015 Dec 01
3
[PATCHv2] New API: part_expand_gpt.
...| 2 +- tests/daemon/Makefile.am | 3 +- tests/daemon/test-expand-gpt.pl | 69 +++++++++++++++++++++++++++++++++++++++++ 5 files changed, 119 insertions(+), 2 deletions(-) create mode 100755 tests/daemon/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; + + /...
2015 Nov 25
1
[PATCH] New API: part_expand_gpt.
...run at first and fail if additional actions are scheduled. --- daemon/parted.c | 33 +++++++++++++++++++++++++++++++++ generator/actions.ml | 14 ++++++++++++++ src/MAX_PROC_NR | 2 +- 3 files changed, 48 insertions(+), 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; + + /...
2015 Dec 22
0
Re: [PATCHv2] New API: part_expand_gpt.
...on/Makefile.am | 3 +- > tests/daemon/test-expand-gpt.pl | 69 +++++++++++++++++++++++++++++++++++++++++ > 5 files changed, 119 insertions(+), 2 deletions(-) > create mode 100755 tests/daemon/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 *dev...
2015 Oct 05
2
[PATCH] Remove multiple hacks that only apply to RHEL 5.
...but RHEL 5 automake doesn't -# create variables for them. So define them here if they're not -# defined already. -builddir ?= @builddir@ -abs_builddir ?= @abs_builddir@ -srcdir ?= @srcdir@ -abs_srcdir ?= @abs_srcdir@ diff --git a/daemon/parted.c b/daemon/parted.c index fab3423..df6b7e7 100644 --- a/daemon/parted.c +++ b/daemon/parted.c @@ -20,6 +20,7 @@ #include <stdio.h> #include <stdlib.h> +#include <stdbool.h> #include <stdint.h> #include <inttypes.h> #include <string.h> @@ -33,13 +34,6 @@ GUESTFSD_EXT_CMD(str_parted, parted); GUESTF...