summaryrefslogtreecommitdiff
path: root/fs/dlm
diff options
context:
space:
mode:
authorAlexander Aring <aahringo@redhat.com>2024-10-04 11:13:37 -0400
committerDavid Teigland <teigland@redhat.com>2024-10-04 10:31:31 -0500
commit6d59f2fbfb18965f76ebcff40ab38da717cde798 (patch)
treec2cf180b00459c83dfdbc8f1cfe05323442681e5 /fs/dlm
parent9852d85ec9d492ebef56dc5f229416c925758edc (diff)
downloadlwn-6d59f2fbfb18965f76ebcff40ab38da717cde798.tar.gz
lwn-6d59f2fbfb18965f76ebcff40ab38da717cde798.zip
dlm: fix swapped args sb_flags vs sb_status
The arguments got swapped by commit 986ae3c2a8df ("dlm: fix race between final callback and remove") fixing this now. Fixes: 986ae3c2a8df ("dlm: fix race between final callback and remove") Signed-off-by: Alexander Aring <aahringo@redhat.com> Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm')
-rw-r--r--fs/dlm/ast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/dlm/ast.c b/fs/dlm/ast.c
index 742b30b61c19..0fe8d80ce5e8 100644
--- a/fs/dlm/ast.c
+++ b/fs/dlm/ast.c
@@ -30,7 +30,7 @@ static void dlm_run_callback(uint32_t ls_id, uint32_t lkb_id, int8_t mode,
trace_dlm_bast(ls_id, lkb_id, mode, res_name, res_length);
bastfn(astparam, mode);
} else if (flags & DLM_CB_CAST) {
- trace_dlm_ast(ls_id, lkb_id, sb_status, sb_flags, res_name,
+ trace_dlm_ast(ls_id, lkb_id, sb_flags, sb_status, res_name,
res_length);
lksb->sb_status = sb_status;
lksb->sb_flags = sb_flags;