On Tue, Mar 19, 2024 at 10:59:09AM -0700, Darrick J. Wong wrote: > > +static inline bool xfs_has_crc(struct xfs_mount *mp) > > +{ > > + return IS_ENABLED(CONFIG_XFS_SUPPORT_V4) && > > + (mp->m_features & XFS_FEAT_CRC); > > Can you save even more text bytes by defining > xfs_has_{nlink,v3inodes,projid32,lazysbcount,pquotino,attr2} to 1? > And I guess defining noattr2 to 0? I guess I can give it a try.