search for: 5beda4a

Displaying 2 results from an estimated 2 matches for "5beda4a".

Did you mean: 5bed94e
2015 Oct 16
0
[PATCH 2/2] Include resize2fs_P into get_min_size.
...fs_type == NULL) return -1; + else if (fstype_is_extfs (vfs_type)) + r = ext_get_min_size (mountable->device); + else if (STREQ (vfs_type, "ntfs")) r = ntfs_get_min_size (mountable->device); diff --git a/generator/actions.ml b/generator/actions.ml index e88dfe7..5beda4a 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -12752,24 +12752,12 @@ Only some filesystem types support setting UUIDs. To read the UUID on a filesystem, call C<guestfs_vfs_uuid>." }; { defaults with - name = "resize2fs_P"; added = (1, 31, 17); - st...
2015 Oct 16
4
[PATCH 0/2] Introduce get_min_size API to get minimum filesystem size.
Tried to make it in accordance with your comments. Maybe you can suggest a better name for API? Maxim Perevedentsev (2): New API: get_min_size Include resize2fs_P into get_min_size. daemon/Makefile.am | 1 + daemon/daemon.h | 2 ++ daemon/ext2.c | 37 ++++++++++++++++++++++++---- daemon/fs-min-size.c | 49 +++++++++++++++++++++++++++++++++++++ daemon/ntfs.c | 68