aboutsummaryrefslogtreecommitdiff
path: root/fs/gfs2
diff options
context:
space:
mode:
authorGravatar Andreas Gruenbacher <agruenba@redhat.com> 2024-01-15 22:01:12 +0100
committerGravatar Andreas Gruenbacher <agruenba@redhat.com> 2024-04-09 18:35:57 +0200
commit3592bfaf746a4d0fefe6fe11527aa335073674c1 (patch)
treef6326ce0b2fa762e0c6b7552b833370be94a8c33 /fs/gfs2
parentgfs2: Follow-up to flag rename in sysfs status file (diff)
downloadlinux-3592bfaf746a4d0fefe6fe11527aa335073674c1.tar.gz
linux-3592bfaf746a4d0fefe6fe11527aa335073674c1.tar.bz2
linux-3592bfaf746a4d0fefe6fe11527aa335073674c1.zip
gfs2: Use [NO_]CREATE consistently for gfs2_glock_get
When calling gfs2_glock_get(), consistently pass the CREATE or NO_CREATE flag for the create argument. This is the only place that passes 0 instead. Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r--fs/gfs2/sys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/sys.c b/fs/gfs2/sys.c
index 32d3484270f3..ecc699f8d9fc 100644
--- a/fs/gfs2/sys.c
+++ b/fs/gfs2/sys.c
@@ -336,7 +336,7 @@ static ssize_t demote_rq_store(struct gfs2_sbd *sdp, const char *buf, size_t len
return -EINVAL;
if (!test_and_set_bit(SDF_DEMOTE, &sdp->sd_flags))
fs_info(sdp, "demote interface used\n");
- rv = gfs2_glock_get(sdp, glnum, glops, 0, &gl);
+ rv = gfs2_glock_get(sdp, glnum, glops, NO_CREATE, &gl);
if (rv)
return rv;
gfs2_glock_cb(gl, glmode);