search for: 24d3ecc

Displaying 4 results from an estimated 4 matches for "24d3ecc".

2014 Nov 21
0
[PATCH 6/6] New API: btrfs_subvolume_show
...return NULL; + } + if (add_string (&ret, "") == -1) { + return NULL; + } + } + + p = pend; + } + + if (end_stringsbuf (&ret) == -1) + return NULL; + + return ret.argv; + +} diff --git a/generator/actions.ml b/generator/actions.ml index cf96039..24d3ecc 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -12014,6 +12014,15 @@ This is the internal call which implements C<guestfs_lstatnslist>." }; longdesc = "\ Get the default subvolume or snapshot of a filesystem mounted at C<mountpoint>." }; + { defa...
2014 Nov 21
3
Re: [PATCH 6/6] New API: btrfs_subvolume_show
...t add elements with empty values in the hash. > + } > + > + p = pend; > + } > + > + if (end_stringsbuf (&ret) == -1) > + return NULL; > + > + return ret.argv; > + > +} > diff --git a/generator/actions.ml b/generator/actions.ml > index cf96039..24d3ecc 100644 > --- a/generator/actions.ml > +++ b/generator/actions.ml > @@ -12014,6 +12014,15 @@ This is the internal call which implements C<guestfs_lstatnslist>." }; > longdesc = "\ > Get the default subvolume or snapshot of a filesystem mounted at C<mountpoint&...
2014 Nov 24
0
Re: [PATCH 6/6] New API: btrfs_subvolume_show
...gt; > + > > + p = pend; > > + } > > + > > + if (end_stringsbuf (&ret) == -1) > > + return NULL; > > + > > + return ret.argv; > > + > > +} > > diff --git a/generator/actions.ml b/generator/actions.ml > > index cf96039..24d3ecc 100644 > > --- a/generator/actions.ml > > +++ b/generator/actions.ml > > @@ -12014,6 +12014,15 @@ This is the internal call which implements C<guestfs_lstatnslist>." }; > > longdesc = "\ > > Get the default subvolume or snapshot of a filesystem mo...
2014 Nov 21
13
[PATCH 0/6] btrfs support part1: subvolume commands
Hi, This is the part1 of improving btrfs support. This series adds missing parameters to btrfs_subvolume_snapshot and btrfs_subvolume_create, and adds two new API btrfs_subvolume_get_default and btrfs_subvolume_show. Other parts will follow. Regards, Hu Hu Tao (6): btrfs: correct words about subvolume and snapshot btrfs: add optional parameter `ro' to btrfs_subvolume_snapshot btrfs: