diff options
author | Eric Sandeen <sandeen@redhat.com> | 2014-02-27 08:15:27 +0400 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2014-02-27 08:15:27 +0400 |
commit | 533b81c875589ad0a2fc116991534b4601195253 (patch) | |
tree | 8a8098e03198f28d448bf789f36832970e5255e2 /fs/xfs/xfs_format.h | |
parent | e0d2c23a253149b4f8a6100f94ca62ddc4b2ae84 (diff) | |
download | linux-533b81c875589ad0a2fc116991534b4601195253.tar.xz |
xfs: Use defines for CRC offsets in all cases
Some calls to crc functions used useful #defines,
others used awkward offsetof() constructs.
Switch them all to #define to make things a bit cleaner.
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_format.h')
-rw-r--r-- | fs/xfs/xfs_format.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/xfs/xfs_format.h b/fs/xfs/xfs_format.h index b6ab5a3cfa12..9898f31d05d8 100644 --- a/fs/xfs/xfs_format.h +++ b/fs/xfs/xfs_format.h @@ -145,6 +145,8 @@ struct xfs_dsymlink_hdr { __be64 sl_lsn; }; +#define XFS_SYMLINK_CRC_OFF offsetof(struct xfs_dsymlink_hdr, sl_crc) + /* * The maximum pathlen is 1024 bytes. Since the minimum file system * blocksize is 512 bytes, we can get a max of 3 extents back from |