diff options
author | Chandan Babu R <chandan.babu@oracle.com> | 2021-11-16 08:28:40 +0100 |
---|---|---|
committer | Chandan Babu R <chandan.babu@oracle.com> | 2022-04-11 06:11:18 +0200 |
commit | 755c38ffe1a5937d8fa03419018f49f3a23fa9a7 (patch) | |
tree | 6bb8d1e7d9cdb87f189a533e487c14e9f81c4b24 /fs/xfs/xfs_trace.h | |
parent | xfs: Use basic types to define xfs_log_dinode's di_nextents and di_anextents (diff) | |
download | linux-755c38ffe1a5937d8fa03419018f49f3a23fa9a7.tar.xz linux-755c38ffe1a5937d8fa03419018f49f3a23fa9a7.zip |
xfs: Promote xfs_extnum_t and xfs_aextnum_t to 64 and 32-bits respectively
A future commit will introduce a 64-bit on-disk data extent counter and a
32-bit on-disk attr extent counter. This commit promotes xfs_extnum_t and
xfs_aextnum_t to 64 and 32-bits in order to correctly handle in-core versions
of these quantities.
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 '')
-rw-r--r-- | fs/xfs/xfs_trace.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_trace.h b/fs/xfs/xfs_trace.h index 16a91b4f97bd..fe6cb2951233 100644 --- a/fs/xfs/xfs_trace.h +++ b/fs/xfs/xfs_trace.h @@ -2182,7 +2182,7 @@ DECLARE_EVENT_CLASS(xfs_swap_extent_class, __entry->broot_size = ip->i_df.if_broot_bytes; __entry->fork_off = XFS_IFORK_BOFF(ip); ), - TP_printk("dev %d:%d ino 0x%llx (%s), %s format, num_extents %d, " + TP_printk("dev %d:%d ino 0x%llx (%s), %s format, num_extents %llu, " "broot size %d, forkoff 0x%x", MAJOR(__entry->dev), MINOR(__entry->dev), __entry->ino, |