search for: 385b620

Displaying 7 results from an estimated 7 matches for "385b620".

Did you mean: 385,62
2014 Dec 05
2
Re: [PATCH 1/8] New API: btrfs_subvolume_get_default
...reply_with_error ("%s: could not parse subvolume id: %s.", argv[0], out); > + return -1; > + } > + > + return ret; > +} > + > int > do_btrfs_filesystem_sync (const char *fs) > { > diff --git a/generator/actions.ml b/generator/actions.ml > index 385b620..80c7ea7 100644 > --- a/generator/actions.ml > +++ b/generator/actions.ml > @@ -12027,6 +12027,15 @@ Set readahead (in 512-byte sectors) for the device. > > This uses the L<blockdev(8)> command." }; > > + { defaults with > + name = "btrfs_subvolume_g...
2014 Nov 28
0
[PATCH 3/3] uuid: make alias get-uuid for vfs_uuid
...use get-uuid looks more like a counterpart to set-uuid, and is more likely come to mind if one knows set-uuid. Signed-off-by: Hu Tao <hutao@cn.fujitsu.com> --- generator/actions.ml | 1 + 1 file changed, 1 insertion(+) diff --git a/generator/actions.ml b/generator/actions.ml index a35fe50..385b620 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -8540,6 +8540,7 @@ To find a filesystem from the label, use C<guestfs_findfs_label>." }; { defaults with name = "vfs_uuid"; style = RString "uuid", [Mountable "mountable"], []; +...
2014 Dec 02
0
[PATCH 1/8] New API: btrfs_subvolume_get_default
...NULL, 10, &ret, NULL); + if (r != LONGINT_OK) { + reply_with_error ("%s: could not parse subvolume id: %s.", argv[0], out); + return -1; + } + + return ret; +} + int do_btrfs_filesystem_sync (const char *fs) { diff --git a/generator/actions.ml b/generator/actions.ml index 385b620..80c7ea7 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -12027,6 +12027,15 @@ Set readahead (in 512-byte sectors) for the device. This uses the L<blockdev(8)> command." }; + { defaults with + name = "btrfs_subvolume_get_default"; + style = RInt64 &q...
2014 Nov 28
3
[PATCH 1/3] uuid: add support to change uuid of swap partition
Signed-off-by: Hu Tao <hutao@cn.fujitsu.com> --- daemon/uuids.c | 19 +++++++++++++++++++ sysprep/sysprep_operation_fs_uuids.ml | 2 -- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/daemon/uuids.c b/daemon/uuids.c index 672f3db..431d867 100644 --- a/daemon/uuids.c +++ b/daemon/uuids.c @@ -29,6 +29,7 @@ GUESTFSD_EXT_CMD(str_tune2fs, tune2fs);
2014 Dec 03
0
[PATCH 4/4] Add freebsd and netbsd distros
...8 ++++++++ src/guestfs-internal.h | 2 ++ src/inspect-fs-unix.c | 2 ++ src/inspect-fs.c | 4 ++++ src/inspect-icon.c | 2 ++ src/inspect.c | 2 ++ src/osinfo.c | 4 ++++ 7 files changed, 24 insertions(+) diff --git a/generator/actions.ml b/generator/actions.ml index 385b620..d4ec0b1 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -1065,6 +1065,10 @@ Debian. Fedora. +=item \"freebsd\" + +FreeBSD. + =item \"freedos\" FreeDOS. @@ -1089,6 +1093,10 @@ Mandriva. MeeGo. +=item \"netbsd\" + +NetBSD. + =item \"o...
2014 Dec 02
0
[PATCH 5/5] Add freebsd and netbsd distros
...8 ++++++++ src/guestfs-internal.h | 2 ++ src/inspect-fs-unix.c | 2 ++ src/inspect-fs.c | 4 ++++ src/inspect-icon.c | 2 ++ src/inspect.c | 2 ++ src/osinfo.c | 4 ++++ 7 files changed, 24 insertions(+) diff --git a/generator/actions.ml b/generator/actions.ml index 385b620..d4ec0b1 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -1065,6 +1065,10 @@ Debian. Fedora. +=item \"freebsd\" + +FreeBSD. + =item \"freedos\" FreeDOS. @@ -1089,6 +1093,10 @@ Mandriva. MeeGo. +=item \"netbsd\" + +NetBSD. + =item \"o...
2014 Dec 02
21
[PATCH 0/8] btrfs support part2: qgroup commands
Hi, This series adds support to btrfs qgroup related commands, inclduing quota commands, and two leftover of subvolume commands. Regards, Hu Hu Tao (8): New API: btrfs_subvolume_get_default New API: btrfs_subvolume_show New API: btrfs_quota_enable New API: btrfs_quota_disable New API: btrfs_quota_rescan New API: btrfs_qgroup_limit New API: btrfs_qgroup_create New API: