| To: | xfs@xxxxxxxxxxx |
|---|---|
| Subject: | [PATCH v3 10/20] xfs: enable the finobt feature on v5 superblocks |
| From: | Brian Foster <bfoster@xxxxxxxxxx> |
| Date: | Thu, 10 Apr 2014 12:11:00 -0400 |
| Delivered-to: | xfs@xxxxxxxxxxx |
| In-reply-to: | <1397146270-42993-1-git-send-email-bfoster@xxxxxxxxxx> |
| References: | <1397146270-42993-1-git-send-email-bfoster@xxxxxxxxxx> |
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@xxxxxxxxxx> --- include/xfs_sb.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/xfs_sb.h b/include/xfs_sb.h index 7f53a85..950d1ea 100644 --- a/include/xfs_sb.h +++ b/include/xfs_sb.h @@ -588,7 +588,8 @@ xfs_sb_has_compat_feature( } #define XFS_SB_FEAT_RO_COMPAT_FINOBT (1 << 0) /* free inode btree */ -#define XFS_SB_FEAT_RO_COMPAT_ALL 0 +#define XFS_SB_FEAT_RO_COMPAT_ALL \ + (XFS_SB_FEAT_RO_COMPAT_FINOBT) #define XFS_SB_FEAT_RO_COMPAT_UNKNOWN ~XFS_SB_FEAT_RO_COMPAT_ALL static inline bool xfs_sb_has_ro_compat_feature( -- 1.8.3.1 |
| Previous by Date: | [PATCH v3 15/20] xfsprogs/repair: pass btree block magic as param to build_ino_tree(), Brian Foster |
|---|---|
| Next by Date: | [PATCH v3 13/20] xfsprogs/repair: account for finobt in ag 0 geometry pre-calculation, Brian Foster |
| Previous by Thread: | [PATCH v3 15/20] xfsprogs/repair: pass btree block magic as param to build_ino_tree(), Brian Foster |
| Next by Thread: | [PATCH v3 13/20] xfsprogs/repair: account for finobt in ag 0 geometry pre-calculation, Brian Foster |
| Indexes: | [Date] [Thread] [Top] [All Lists] |