Message ID | 20211005062305.549871-4-naohiro.aota@wdc.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | btrfs-progs: use direct-IO for zoned device | expand |
diff --git a/common/fsfeatures.h b/common/fsfeatures.h index 163588e52933..9e39c667b900 100644 --- a/common/fsfeatures.h +++ b/common/fsfeatures.h @@ -39,8 +39,7 @@ | BTRFS_FEATURE_INCOMPAT_BIG_METADATA \ | BTRFS_FEATURE_INCOMPAT_EXTENDED_IREF \ | BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA \ - | BTRFS_FEATURE_INCOMPAT_NO_HOLES \ - | BTRFS_FEATURE_INCOMPAT_ZONED) + | BTRFS_FEATURE_INCOMPAT_NO_HOLES) #define BTRFS_FEATURE_LIST_ALL (1ULL << 63)
Since we cannot create ext*/reiserfs on a zoned device, it is useless to allow ZONED feature when converting a file system. Drop ZONED flag from BTRFS_CONVERT_ALLOWED_FEATURES. Signed-off-by: Naohiro Aota <naohiro.aota@wdc.com> --- common/fsfeatures.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)