Displaying 6 results from an estimated 6 matches for "fb971d3".
2015 Mar 13
2
[PATCH] tests: add test case of set-label and vfs-label for btrfs
Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com>
---
generator/actions.ml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/generator/actions.ml b/generator/actions.ml
index fb971d3..d235f1a 100644
--- a/generator/actions.ml
+++ b/generator/actions.ml
@@ -8591,6 +8591,11 @@ a file in the host and attach it as a device." };
[["part_disk"; "/dev/sda"; "mbr"];
["mkfs"; "ext2"; "/dev/sda1"; "&...
2015 Mar 17
4
[PATCH] New API: part_get_part_type for showing partition type
...or;
+
+ return part_type;
+ }
+
+ if (row == end) {
+ reply_with_error ("could not find partnum: %d", partnum);
+ return NULL;
+ }
+
+ error:
+ reply_with_error ("strdup failed");
+ return NULL;
+}
diff --git a/generator/actions.ml b/generator/actions.ml
index fb971d3..72418b0 100644
--- a/generator/actions.ml
+++ b/generator/actions.ml
@@ -12522,6 +12522,24 @@ This will Enable extended inode refs." };
longdesc = "\
This enable skinny metadata extent refs." };
+ { defaults with
+ name = "part_get_part_type";
+ style = RStr...
2015 Mar 03
2
[PATCH] actions: improve man page links
Switch from C<> to L<> for links to man pages, where wasn't done before.
---
generator/actions.ml | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/generator/actions.ml b/generator/actions.ml
index 9f32cb5..fb971d3 100644
--- a/generator/actions.ml
+++ b/generator/actions.ml
@@ -683,7 +683,7 @@ calls, parameters and return values are traced.
If you want to trace C API calls into libguestfs (and
other libraries) then possibly a better way is to use
-the external ltrace(1) command.
+the external L<ltrace...
2015 Mar 23
0
Re: [PATCH] New API: part_get_part_type for showing partition type
...end) {
> + reply_with_error ("could not find partnum: %d", partnum);
> + return NULL;
> + }
> +
> + error:
> + reply_with_error ("strdup failed");
> + return NULL;
> +}
> diff --git a/generator/actions.ml b/generator/actions.ml
> index fb971d3..72418b0 100644
> --- a/generator/actions.ml
> +++ b/generator/actions.ml
> @@ -12522,6 +12522,24 @@ This will Enable extended inode refs." };
> longdesc = "\
> This enable skinny metadata extent refs." };
>
> + { defaults with
> + name = "par...
2015 Mar 17
2
[PATCH v2] New API: btrfs-image
...]);
+
+ ADD_ARG (argv, i, image);
+ ADD_ARG (argv, i, NULL);
+
+ r = commandv (&out, &err, argv);
+ if (r == -1) {
+ reply_with_error ("%s %s: %s", sources[0], image, err);
+ return -1;
+ }
+
+ return 0;
+}
diff --git a/generator/actions.ml b/generator/actions.ml
index fb971d3..8effc0e 100644
--- a/generator/actions.ml
+++ b/generator/actions.ml
@@ -12522,6 +12522,28 @@ This will Enable extended inode refs." };
longdesc = "\
This enable skinny metadata extent refs." };
+ { defaults with
+ name = "btrfs_image";
+ style = RErr, [Devi...
2015 Mar 24
2
Re: [PATCH] New API: part_get_part_type for showing partition type
...d not find partnum: %d", partnum);
> > + return NULL;
> > + }
> > +
> > + error:
> > + reply_with_error ("strdup failed");
> > + return NULL;
> > +}
> > diff --git a/generator/actions.ml b/generator/actions.ml
> > index fb971d3..72418b0 100644
> > --- a/generator/actions.ml
> > +++ b/generator/actions.ml
> > @@ -12522,6 +12522,24 @@ This will Enable extended inode refs." };
> > longdesc = "\
> > This enable skinny metadata extent refs." };
> >
> > + { default...