aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_log.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2025-09-15 06:26:52 -0700
committerCarlos Maiolino <cem@kernel.org>2025-09-16 12:25:05 +0200
commit05f17dcbfd5dbe309af310508d8830ac4e0c5d4c (patch)
tree4d60e649d513f02004183ad7ec71a5eb8294bf6c /fs/xfs/xfs_log.c
parentxfs: remove the xlog_op_header_t typedef (diff)
downloadlinux-05f17dcbfd5dbe309af310508d8830ac4e0c5d4c.tar.gz
linux-05f17dcbfd5dbe309af310508d8830ac4e0c5d4c.zip
xfs: remove the xfs_trans_header_t typedef
There are almost no users of the typedef left, kill it and switch the remaining users to use the underlying struct. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Darrick J. Wong <djwong@kernel.org> Signed-off-by: Carlos Maiolino <cem@kernel.org>
Diffstat (limited to 'fs/xfs/xfs_log.c')
-rw-r--r--fs/xfs/xfs_log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_log.c b/fs/xfs/xfs_log.c
index 94e06c22be67..7c590ecdf865 100644
--- a/fs/xfs/xfs_log.c
+++ b/fs/xfs/xfs_log.c
@@ -3155,7 +3155,7 @@ xlog_calc_unit_res(
/* for trans header */
unit_bytes += sizeof(struct xlog_op_header);
- unit_bytes += sizeof(xfs_trans_header_t);
+ unit_bytes += sizeof(struct xfs_trans_header);
/* for start-rec */
unit_bytes += sizeof(struct xlog_op_header);