lkml.org 
[lkml]   [2019]   [Jun]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 03/12] btrfs-progs: add new HMZONED feature flag
    Date
    With this feature enabled, a zoned block device aware btrfs allocates block
    groups aligned to the device zones and always write in sequential zones at
    the zone write pointer position.

    Enabling this feature also force disable conversion from ext4 volumes.

    Note: this flag can be moved to COMPAT_RO, so that older kernel can read
    but not write zoned block devices formatted with btrfs.

    Signed-off-by: Naohiro Aota <naohiro.aota@wdc.com>
    ---
    cmds-inspect-dump-super.c | 3 ++-
    ctree.h | 4 +++-
    fsfeatures.c | 8 ++++++++
    fsfeatures.h | 2 +-
    libbtrfsutil/btrfs.h | 2 ++
    5 files changed, 16 insertions(+), 3 deletions(-)

    diff --git a/cmds-inspect-dump-super.c b/cmds-inspect-dump-super.c
    index d62f0932556c..ff3c0aa262c8 100644
    --- a/cmds-inspect-dump-super.c
    +++ b/cmds-inspect-dump-super.c
    @@ -229,7 +229,8 @@ static struct readable_flag_entry incompat_flags_array[] = {
    DEF_INCOMPAT_FLAG_ENTRY(RAID56),
    DEF_INCOMPAT_FLAG_ENTRY(SKINNY_METADATA),
    DEF_INCOMPAT_FLAG_ENTRY(NO_HOLES),
    - DEF_INCOMPAT_FLAG_ENTRY(METADATA_UUID)
    + DEF_INCOMPAT_FLAG_ENTRY(METADATA_UUID),
    + DEF_INCOMPAT_FLAG_ENTRY(HMZONED)
    };
    static const int incompat_flags_num = sizeof(incompat_flags_array) /
    sizeof(struct readable_flag_entry);
    diff --git a/ctree.h b/ctree.h
    index 76f52b1c9b08..9f79686690e0 100644
    --- a/ctree.h
    +++ b/ctree.h
    @@ -492,6 +492,7 @@ struct btrfs_super_block {
    #define BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA (1ULL << 8)
    #define BTRFS_FEATURE_INCOMPAT_NO_HOLES (1ULL << 9)
    #define BTRFS_FEATURE_INCOMPAT_METADATA_UUID (1ULL << 10)
    +#define BTRFS_FEATURE_INCOMPAT_HMZONED (1ULL << 11)

    #define BTRFS_FEATURE_COMPAT_SUPP 0ULL

    @@ -515,7 +516,8 @@ struct btrfs_super_block {
    BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS | \
    BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA | \
    BTRFS_FEATURE_INCOMPAT_NO_HOLES | \
    - BTRFS_FEATURE_INCOMPAT_METADATA_UUID)
    + BTRFS_FEATURE_INCOMPAT_METADATA_UUID | \
    + BTRFS_FEATURE_INCOMPAT_HMZONED)

    /*
    * A leaf is full of items. offset and size tell us where to find
    diff --git a/fsfeatures.c b/fsfeatures.c
    index 7f3ef03b8452..c4904ce8baf5 100644
    --- a/fsfeatures.c
    +++ b/fsfeatures.c
    @@ -86,6 +86,14 @@ static const struct btrfs_fs_feature {
    VERSION_TO_STRING2(4,0),
    NULL, 0,
    "no explicit hole extents for files" },
    +#ifdef BTRFS_ZONED
    + { "hmzoned", BTRFS_FEATURE_INCOMPAT_HMZONED,
    + "hmzoned",
    + NULL, 0,
    + NULL, 0,
    + NULL, 0,
    + "support Host-Managed Zoned devices" },
    +#endif
    /* Keep this one last */
    { "list-all", BTRFS_FEATURE_LIST_ALL, NULL }
    };
    diff --git a/fsfeatures.h b/fsfeatures.h
    index 3cc9452a3327..0918ee1aa113 100644
    --- a/fsfeatures.h
    +++ b/fsfeatures.h
    @@ -25,7 +25,7 @@
    | BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA)

    /*
    - * Avoid multi-device features (RAID56) and mixed block groups
    + * Avoid multi-device features (RAID56), mixed block groups, and hmzoned device
    */
    #define BTRFS_CONVERT_ALLOWED_FEATURES \
    (BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF \
    diff --git a/libbtrfsutil/btrfs.h b/libbtrfsutil/btrfs.h
    index 944d50132456..5c415240f74c 100644
    --- a/libbtrfsutil/btrfs.h
    +++ b/libbtrfsutil/btrfs.h
    @@ -268,6 +268,8 @@ struct btrfs_ioctl_fs_info_args {
    #define BTRFS_FEATURE_INCOMPAT_RAID56 (1ULL << 7)
    #define BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA (1ULL << 8)
    #define BTRFS_FEATURE_INCOMPAT_NO_HOLES (1ULL << 9)
    +/* Missing */
    +#define BTRFS_FEATURE_INCOMPAT_HMZONED (1ULL << 11)

    struct btrfs_ioctl_feature_flags {
    __u64 compat_flags;
    --
    2.21.0
    \
     
     \ /
      Last update: 2019-06-07 15:18    [W:4.078 / U:0.060 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site