On Tue, Dec 14, 2021 at 02:15:18PM +0530, Chandan Babu R wrote: > This commit enables XFS module to work with fs instances having 64-bit > per-inode extent counters by adding XFS_SB_FEAT_INCOMPAT_NREXT64 flag to the > list of supported incompat feature flags. > > Signed-off-by: Chandan Babu R <chandan.babu@xxxxxxxxxx> Looks good, Reviewed-by: Darrick J. Wong <djwong@xxxxxxxxxx> --D > --- > fs/xfs/libxfs/xfs_format.h | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/fs/xfs/libxfs/xfs_format.h b/fs/xfs/libxfs/xfs_format.h > index 2868cec1154d..3183f78fe7a3 100644 > --- a/fs/xfs/libxfs/xfs_format.h > +++ b/fs/xfs/libxfs/xfs_format.h > @@ -378,7 +378,8 @@ xfs_sb_has_ro_compat_feature( > XFS_SB_FEAT_INCOMPAT_SPINODES| \ > XFS_SB_FEAT_INCOMPAT_META_UUID| \ > XFS_SB_FEAT_INCOMPAT_BIGTIME| \ > - XFS_SB_FEAT_INCOMPAT_NEEDSREPAIR) > + XFS_SB_FEAT_INCOMPAT_NEEDSREPAIR| \ > + XFS_SB_FEAT_INCOMPAT_NREXT64) > > #define XFS_SB_FEAT_INCOMPAT_UNKNOWN ~XFS_SB_FEAT_INCOMPAT_ALL > static inline bool > -- > 2.30.2 >