search for: xfs_sb_version_num

Displaying 2 results from an estimated 2 matches for "xfs_sb_version_num".

2015 Dec 15
1
[PATCH] xfs: Add support for v3 directories
On Tue, December 15, 2015 5:50 am, Ady via Syslinux wrote: > >> Besides supporting newer version of xfs file system, this patch also >> does some code refactoring and fix completely broken listing and >> searching on v2-3 node directories. >> > > Thank you. > > About the XFS "version" you are mentioning, a small clearer reference > might be
2012 Sep 03
1
[GIT-PULL] XFS filesystem driver
...mount; + +#define XFS_SB_MAGIC "XFSB" /* 'XFSB' */ +#define XFS_SB_VERSION_1 1 /* 5.3, 6.0.1, 6.1 */ +#define XFS_SB_VERSION_2 2 /* 6.2 - attributes */ +#define XFS_SB_VERSION_3 3 /* 6.2 - new inode version */ +#define XFS_SB_VERSION_4 4 /* 6.2+ - bitmask version */ +#define XFS_SB_VERSION_NUMBITS 0x000f +#define XFS_SB_VERSION_ALLFBITS 0xfff0 +#define XFS_SB_VERSION_SASHFBITS 0xf000 +#define XFS_SB_VERSION_REALFBITS 0x0ff0 +#define XFS_SB_VERSION_ATTRBIT 0x0010 +#define XFS_SB_VERSION_NLINKBIT 0x0020 +#define XFS_SB_VERSION_QUOTABIT 0x0040 +#define XFS_SB_VERSION_ALIGNBIT 0x0080 +...