diff options
author | Darrick J. Wong <djwong@kernel.org> | 2023-10-16 18:51:16 +0200 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2023-10-19 01:53:00 +0200 |
commit | 663b8db7b0256b81152b2f786e45ecf12bdf265f (patch) | |
tree | eef619bc233dbe4eb8d796a0fca9a5573210faf3 /fs/xfs/xfs_ondisk.h | |
parent | xfs: create helpers for rtsummary block/wordcount computations (diff) | |
download | linux-663b8db7b0256b81152b2f786e45ecf12bdf265f.tar.xz linux-663b8db7b0256b81152b2f786e45ecf12bdf265f.zip |
xfs: use accessor functions for summary info words
Create get and set functions for rtsummary words so that we can redefine
the ondisk format with a specific endianness. Note that this requires
the definition of a distinct type for ondisk summary info words so that
the compiler can perform proper typechecking.
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/xfs_ondisk.h')
-rw-r--r-- | fs/xfs/xfs_ondisk.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/xfs_ondisk.h b/fs/xfs/xfs_ondisk.h index 14d455f768d3..21a7e350b4c5 100644 --- a/fs/xfs/xfs_ondisk.h +++ b/fs/xfs/xfs_ondisk.h @@ -74,6 +74,7 @@ xfs_check_ondisk_structs(void) /* realtime structures */ XFS_CHECK_STRUCT_SIZE(union xfs_rtword_raw, 4); + XFS_CHECK_STRUCT_SIZE(union xfs_suminfo_raw, 4); /* * m68k has problems with xfs_attr_leaf_name_remote_t, but we pad it to |