mirror of
https://github.com/torvalds/linux.git
synced 2026-07-28 10:09:10 +02:00
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>
This commit is contained in:
parent
d128ffd2ba
commit
f88caa121e
|
|
@ -1710,7 +1710,7 @@ xlog_cil_push_background(
|
|||
static void
|
||||
xlog_cil_push_now(
|
||||
struct xlog *log,
|
||||
xfs_lsn_t push_seq,
|
||||
xfs_csn_t push_seq,
|
||||
bool async)
|
||||
{
|
||||
struct xfs_cil *cil = log->l_cilp;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user