From: Bob Peterson <rpeterso@redhat.com>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] [GFS2 v8 PATCH 02/22] gfs2: clear ail1 list when gfs2 withdraws
Date: Mon, 9 Dec 2019 09:36:40 -0600 [thread overview]
Message-ID: <20191209153700.700208-3-rpeterso@redhat.com> (raw)
In-Reply-To: <20191209153700.700208-1-rpeterso@redhat.com>
This patch fixes a bug in which function gfs2_log_flush can get into
an infinite loop when a gfs2 file system is withdrawn. The problem
is the infinite loop "for (;;)" in gfs2_log_flush which would never
finish because the io error and subsequent withdraw prevented the
items from being taken off the ail list.
This patch tries to clean up the mess by allowing withdraw situations
to move not-in-flight buffer_heads to the ail2 list, where they will
be dealt with later.
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
---
fs/gfs2/log.c | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/fs/gfs2/log.c b/fs/gfs2/log.c
index 38a03c2203de..5dc889dae01f 100644
--- a/fs/gfs2/log.c
+++ b/fs/gfs2/log.c
@@ -111,11 +111,17 @@ __acquires(&sdp->sd_ail_lock)
&sdp->sd_flags)) {
gfs2_io_error_bh(sdp, bh);
set_bit(SDF_WITHDRAWING, &sdp->sd_flags);
+ } else {
+ list_move(&bd->bd_ail_st_list,
+ &tr->tr_ail2_list);
+ continue;
}
- list_move(&bd->bd_ail_st_list, &tr->tr_ail2_list);
- continue;
}
+ if (gfs2_withdrawn(sdp)) {
+ gfs2_remove_from_ail(bd);
+ continue;
+ }
if (!buffer_dirty(bh))
continue;
if (gl == bd->bd_gl)
@@ -861,6 +867,8 @@ void gfs2_log_flush(struct gfs2_sbd *sdp, struct gfs2_glock *gl, u32 flags)
if (gfs2_ail1_empty(sdp))
break;
}
+ if (gfs2_withdrawn(sdp))
+ goto out;
atomic_dec(&sdp->sd_log_blks_free); /* Adjust for unreserved buffer */
trace_gfs2_log_blocks(sdp, -1);
log_write_header(sdp, flags);
@@ -873,6 +881,7 @@ void gfs2_log_flush(struct gfs2_sbd *sdp, struct gfs2_glock *gl, u32 flags)
atomic_set(&sdp->sd_freeze_state, SFS_FROZEN);
}
+out:
trace_gfs2_log_flush(sdp, 0, flags);
up_write(&sdp->sd_log_flush_lock);
--
2.23.0
next prev parent reply other threads:[~2019-12-09 15:36 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-09 15:36 [Cluster-devel] [GFS2 v8 PATCH 00/22] GFS2 Recovery corruption patches v8 Bob Peterson
2019-12-09 15:36 ` [Cluster-devel] [GFS2 v8 PATCH 01/22] gfs2: Introduce concept of a pending withdraw Bob Peterson
2019-12-09 15:36 ` Bob Peterson [this message]
2019-12-09 15:36 ` [Cluster-devel] [GFS2 v8 PATCH 03/22] gfs2: Rework how rgrp buffer_heads are managed Bob Peterson
2019-12-09 15:36 ` [Cluster-devel] [GFS2 v8 PATCH 04/22] gfs2: log error reform Bob Peterson
2019-12-09 15:36 ` [Cluster-devel] [GFS2 v8 PATCH 05/22] gfs2: Only complain the first time an io error occurs in quota or log Bob Peterson
2019-12-09 15:36 ` [Cluster-devel] [GFS2 v8 PATCH 06/22] gfs2: Ignore dlm recovery requests if gfs2 is withdrawn Bob Peterson
2019-12-09 15:36 ` [Cluster-devel] [GFS2 v8 PATCH 07/22] gfs2: move check_journal_clean to util.c for future use Bob Peterson
2019-12-09 15:36 ` [Cluster-devel] [GFS2 v8 PATCH 08/22] gfs2: Allow some glocks to be used during withdraw Bob Peterson
2019-12-09 15:36 ` [Cluster-devel] [GFS2 v8 PATCH 09/22] gfs2: Make secondary withdrawers wait for first withdrawer Bob Peterson
2019-12-09 15:36 ` [Cluster-devel] [GFS2 v8 PATCH 10/22] gfs2: Force withdraw to replay journals and wait for it to finish Bob Peterson
2019-12-09 15:36 ` [Cluster-devel] [GFS2 v8 PATCH 11/22] gfs2: fix infinite loop when checking ail item count before go_inval Bob Peterson
2019-12-09 15:36 ` [Cluster-devel] [GFS2 v8 PATCH 12/22] gfs2: Add verbose option to check_journal_clean Bob Peterson
2019-12-09 15:36 ` [Cluster-devel] [GFS2 v8 PATCH 13/22] gfs2: Issue revokes more intelligently Bob Peterson
2019-12-09 15:36 ` [Cluster-devel] [GFS2 v8 PATCH 14/22] gfs2: Prepare to withdraw as soon as an IO error occurs in log write Bob Peterson
2019-12-09 15:36 ` [Cluster-devel] [GFS2 v8 PATCH 15/22] gfs2: Check for log write errors before telling dlm to unlock Bob Peterson
2019-12-09 15:36 ` [Cluster-devel] [GFS2 v8 PATCH 16/22] gfs2: new slab for transactions Bob Peterson
2020-01-23 22:22 ` Andreas Gruenbacher
2020-01-24 13:45 ` Bob Peterson
2019-12-09 15:36 ` [Cluster-devel] [GFS2 v8 PATCH 17/22] gfs2: Do log_flush in gfs2_ail_empty_gl even if ail list is empty Bob Peterson
2019-12-09 15:36 ` [Cluster-devel] [GFS2 v8 PATCH 18/22] gfs2: Don't skip log flush if glock still has revokes Bob Peterson
2019-12-09 15:36 ` [Cluster-devel] [GFS2 v8 PATCH 19/22] gfs2: Withdraw in gfs2_ail1_flush if write_cache_pages returns error Bob Peterson
2019-12-09 15:36 ` [Cluster-devel] [GFS2 v8 PATCH 20/22] gfs2: drain the ail2 list after io errors Bob Peterson
2019-12-09 15:36 ` [Cluster-devel] [GFS2 v8 PATCH 21/22] gfs2: Don't demote a glock until its revokes are written Bob Peterson
2019-12-09 15:37 ` [Cluster-devel] [GFS2 v8 PATCH 22/22] gfs2: Do proper error checking for go_sync family of glops functions Bob Peterson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20191209153700.700208-3-rpeterso@redhat.com \
--to=rpeterso@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).