search for: 033c136

Displaying 3 results from an estimated 3 matches for "033c136".

Did you mean: 033132
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; + + /* If some...
2015 Nov 25
1
[PATCH] New API: part_expand_gpt.
...rst 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; + + /* If some...
2015 Dec 22
0
Re: [PATCHv2] New API: part_expand_gpt.
...le.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) >...