diff options
author | Brian Foster <bfoster@redhat.com> | 2014-04-24 02:01:42 -0400 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2014-04-24 02:01:42 -0400 |
commit | 53801fd97ae000793f51187b122b9475102199a8 (patch) | |
tree | 0ea25a3384749e4b759c9fbf6688ad267fe8267a /fs/xfs/xfs_sb.h | |
parent | 0c153c1e4326725e9d5e9de6a25fe8ec2353d5ee (diff) |
xfs: enable the finobt feature on v5 superblocks
Add the finobt feature bit to the list of known features. As of
this point, the kernel code knows how to mount and manage both
finobt and non-finobt formatted filesystems.
Signed-off-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_sb.h')
-rw-r--r-- | fs/xfs/xfs_sb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/xfs/xfs_sb.h b/fs/xfs/xfs_sb.h index 7f53a858e85b..950d1ea058b2 100644 --- a/fs/xfs/xfs_sb.h +++ b/fs/xfs/xfs_sb.h | |||
@@ -588,7 +588,8 @@ xfs_sb_has_compat_feature( | |||
588 | } | 588 | } |
589 | 589 | ||
590 | #define XFS_SB_FEAT_RO_COMPAT_FINOBT (1 << 0) /* free inode btree */ | 590 | #define XFS_SB_FEAT_RO_COMPAT_FINOBT (1 << 0) /* free inode btree */ |
591 | #define XFS_SB_FEAT_RO_COMPAT_ALL 0 | 591 | #define XFS_SB_FEAT_RO_COMPAT_ALL \ |
592 | (XFS_SB_FEAT_RO_COMPAT_FINOBT) | ||
592 | #define XFS_SB_FEAT_RO_COMPAT_UNKNOWN ~XFS_SB_FEAT_RO_COMPAT_ALL | 593 | #define XFS_SB_FEAT_RO_COMPAT_UNKNOWN ~XFS_SB_FEAT_RO_COMPAT_ALL |
593 | static inline bool | 594 | static inline bool |
594 | xfs_sb_has_ro_compat_feature( | 595 | xfs_sb_has_ro_compat_feature( |