From: Andreas Gruenbacher Date: Mon, 15 Jan 2024 21:01:12 +0000 (+0100) Subject: gfs2: Use [NO_]CREATE consistently for gfs2_glock_get X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=3592bfaf746a4d0fefe6fe11527aa335073674c1;p=linux.git 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 --- diff --git a/fs/gfs2/sys.c b/fs/gfs2/sys.c index 32d3484270f39..ecc699f8d9fca 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);