diff options
author | Chandan Babu R | 2021-02-26 11:24:31 +0530 |
---|---|---|
committer | Chandan Babu R | 2022-04-11 04:11:17 +0000 |
commit | bb1d50494cbdd9c5991ddc7feeeb14982872b2a8 (patch) | |
tree | a6651f523a7eb8f40652380dfad3e3a9bcbbff03 /fs/xfs/scrub | |
parent | 9feb8f19665c8ba051c6a81aa7897149e7748e1e (diff) |
xfs: Use xfs_extnum_t instead of basic data types
xfs_extnum_t is the type to use to declare variables which have values
obtained from xfs_dinode->di_[a]nextents. This commit replaces basic
types (e.g. uint32_t) with xfs_extnum_t for such variables.
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Chandan Babu R <chandan.babu@oracle.com>
Diffstat (limited to 'fs/xfs/scrub')
-rw-r--r-- | fs/xfs/scrub/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/scrub/inode.c b/fs/xfs/scrub/inode.c index eac15af7b08c..87925761e174 100644 --- a/fs/xfs/scrub/inode.c +++ b/fs/xfs/scrub/inode.c @@ -232,7 +232,7 @@ xchk_dinode( size_t fork_recs; unsigned long long isize; uint64_t flags2; - uint32_t nextents; + xfs_extnum_t nextents; prid_t prid; uint16_t flags; uint16_t mode; |