Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6a99be5d authored by Steven Whitehouse's avatar Steven Whitehouse
Browse files

GFS2: Fix typo



A missing ! in a test.

Signed-off-by: default avatarSteven Whitehouse <swhiteho@redhat.com>
parent cc0581bd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -233,7 +233,7 @@ static ssize_t demote_rq_store(struct gfs2_sbd *sdp, const char *buf, size_t len
	glops = gfs2_glops_list[gltype];
	if (glops == NULL)
		return -EINVAL;
	if (test_and_set_bit(SDF_DEMOTE, &sdp->sd_flags))
	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);
	if (rv)