search for: btrfs_feature_list_all

Displaying 2 results from an estimated 2 matches for "btrfs_feature_list_all".

2013 May 16
0
[PATCH] btrfs-progs: mkfs: add -O option to specify fs features
...;, 1, NULL, ''r'' }, { "nodiscard", 0, NULL, ''K'' }, + { "features", 0, NULL, ''O'' }, { 0, 0, 0, 0} }; @@ -1253,6 +1255,87 @@ static int is_ssd(const char *file) return !atoi((const char *)&rotational); } +#define BTRFS_FEATURE_LIST_ALL (1ULL << 63) + +static const struct btrfs_fs_feature { + const char *name; + u64 flag; + const char *desc; +} mkfs_features[] = { + { "mixed-bg", BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS, + "mixed data and metadata block groups" }, + { "extref", BTRFS_FEATURE_INCOMP...
2013 Oct 22
0
[PATCH] Btrfs-progs: add support for the no holes incompat flag
..." }, { "skinny-metadata", BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA, "reduced-size metadata extent refs" }, + { "no-holes", BTRFS_FEATURE_INCOMPAT_NO_HOLES, + "no explicit hole extents for files" }, /* Keep this one last */ { "list-all", BTRFS_FEATURE_LIST_ALL, NULL } }; -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html