xfs_extlen_t is a 32-bit type, not matching the 64-bit on-disk
value. Use the most fitting 64-bit type.
Noticed by the size checking macros on x86 which doesn't naturally
align 64-bit fields.
Signed-off-by: Christoph Hellwig <hch@lst.de>
uint8_t sb_rgblklog; /* rt group number shift */
uint8_t sb_pad[7]; /* zeroes */
xfs_fsblock_t sb_rtstart; /* start of internal RT section (FSB) */
- xfs_extlen_t sb_rtreserved; /* reserved (zoned) RT blocks */
+ xfs_filblks_t sb_rtreserved; /* reserved (zoned) RT blocks */
/* must be padded to 64 bit alignment */
} xfs_sb_t;