search for: 7ab8ee4

Displaying 6 results from an estimated 6 matches for "7ab8ee4".

2015 Dec 01
3
[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 7ab8ee4..3a14683 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -12787,6 +12787,20 @@ See also L<ntfsresize(8)>, L<resize2fs(8)>, L<btrfs(8)>, L<xfs_info(8)>." }; longdesc = "\ This is the internal call which implements C<guestfs_feature_available...
2015 Dec 01
2
[PATCH 1/2] launch: direct: manually compose iscsi:// URIs
Move the creation of iscsi URIs away from make_uri, composing them manually: this is needed because libxml assumes colons (':') to separate user and password for the authority part, while with iscsi URIs the separator is percentage ('%'), which would be percent-encoded by libxml. --- src/launch-direct.c | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3
2015 Nov 25
1
[PATCH] 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 7ab8ee4..3a14683 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -12787,6 +12787,20 @@ See also L<ntfsresize(8)>, L<resize2fs(8)>, L<btrfs(8)>, L<xfs_info(8)>." }; longdesc = "\ This is the internal call which implements C<guestfs_feature_available...
2015 Dec 22
0
Re: [PATCHv2] New API: part_expand_gpt.
...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 7ab8ee4..3a14683 100644 > --- a/generator/actions.ml > +++ b/generator/actions.ml > @@ -12787,6 +12787,20 @@ See also L<ntfsresize(8)>, L<resize2fs(8)>, L<btrfs(8)>, L<xfs_info(8)>." }; > longdesc = "\ > This is the internal call which implements C&l...
2015 Nov 05
0
[PATCH 2/2] actions: refactor available & feature_available
...internal_available (char *const *groups) -{ - if (available (groups, 1) == -1) - return -1; - - /* No error, so all groups available, just returns no error. */ - return 0; + /* Unknown group */ + return 2; } char ** diff --git a/generator/actions.ml b/generator/actions.ml index 6348c88..7ab8ee4 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -12779,18 +12779,9 @@ this will fail and set errno as ENOTSUP. See also L<ntfsresize(8)>, L<resize2fs(8)>, L<btrfs(8)>, L<xfs_info(8)>." }; { defaults with - name = "internal_available";...
2015 Nov 05
4
[PATCH 1/2] actions: turn available & feature_available as non-daemon
Rename the current available and feature_available into internal daemon functions, and provide non-daemon functions wrapping them at library side. This will make it possible to e.g. add caching for them. Should be only refactoring, no actual behaviour change. --- daemon/available.c | 4 +- generator/actions.ml | 192 ++++++++++++++++++++++++++++----------------------- po/POTFILES |