aboutsummaryrefslogtreecommitdiff
path: root/fs/ocfs2/stack_user.c
diff options
context:
space:
mode:
authorGravatar Jeff Layton <jlayton@kernel.org> 2024-01-31 18:01:54 -0500
committerGravatar Christian Brauner <brauner@kernel.org> 2024-02-05 13:11:37 +0100
commit64f92a554f72cbfe8b971f93af9d07f87599bc88 (patch)
tree95af30446b99b001b28fa2a730cd41e4f5843f0b /fs/ocfs2/stack_user.c
parentnfsd: convert to using new filelock helpers (diff)
downloadlinux-64f92a554f72cbfe8b971f93af9d07f87599bc88.tar.gz
linux-64f92a554f72cbfe8b971f93af9d07f87599bc88.tar.bz2
linux-64f92a554f72cbfe8b971f93af9d07f87599bc88.zip
ocfs2: convert to using new filelock helpers
Convert to using the new file locking helper functions. Signed-off-by: Jeff Layton <jlayton@kernel.org> Link: https://lore.kernel.org/r/20240131-flsplit-v3-13-c6129007ee8d@kernel.org Reviewed-by: NeilBrown <neilb@suse.de> Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'fs/ocfs2/stack_user.c')
-rw-r--r--fs/ocfs2/stack_user.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/stack_user.c b/fs/ocfs2/stack_user.c
index 9b76ee66aeb2..c11406cd87a8 100644
--- a/fs/ocfs2/stack_user.c
+++ b/fs/ocfs2/stack_user.c
@@ -744,7 +744,7 @@ static int user_plock(struct ocfs2_cluster_connection *conn,
return dlm_posix_cancel(conn->cc_lockspace, ino, file, fl);
else if (IS_GETLK(cmd))
return dlm_posix_get(conn->cc_lockspace, ino, file, fl);
- else if (fl->fl_type == F_UNLCK)
+ else if (lock_is_unlock(fl))
return dlm_posix_unlock(conn->cc_lockspace, ino, file, fl);
else
return dlm_posix_lock(conn->cc_lockspace, ino, file, cmd, fl);