]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
xfs: use xfs_csn_t for xlog_cil_push_now() push_seq parameter
authorJinliang Zheng <alexjlzheng@tencent.com>
Thu, 2 Jul 2026 11:56:11 +0000 (19:56 +0800)
committerCarlos Maiolino <cem@kernel.org>
Wed, 8 Jul 2026 12:54:05 +0000 (14:54 +0200)
commitf88caa121eac3b6a050262ac3de0c133ee17f7b2
treea2b7da97c3c167f59a2561ef6cfc8be14e099cbf
parentd128ffd2baa708da0362b562f0b7f9df96e43653
xfs: use xfs_csn_t for xlog_cil_push_now() push_seq parameter

The push_seq argument to xlog_cil_push_now() carries a CIL checkpoint
sequence number, not a log sequence number (LSN).

Change the parameter type from xfs_lsn_t to xfs_csn_t to correctly
reflect its semantics and match the surrounding types. Both types are
int64_t under the hood, so this is a type-annotation fix with no
behavioural change.

Signed-off-by: Jinliang Zheng <alexjlzheng@tencent.com>
Reviewed-by: "Darrick J. Wong" <djwong@kernel.org>
Signed-off-by: Carlos Maiolino <cem@kernel.org>
fs/xfs/xfs_log_cil.c