gfs2: gfs2_ail_empty_gl no log flush on error
authorBob Peterson <rpeterso@redhat.com>
Fri, 21 Apr 2023 19:07:10 +0000 (15:07 -0400)
committerAndreas Gruenbacher <agruenba@redhat.com>
Tue, 25 Apr 2023 09:07:16 +0000 (11:07 +0200)
Before this patch, function gfs2_ail_empty_gl called gfs2_log_flush even
in cases where it encountered an error. It should probably skip the log
flush and leave the file system in an inconsistent state, letting a
subsequent withdraw force the journal to be replayed to reestablish
metadata consistency.

Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
fs/gfs2/glops.c

index caef70334af30d23db0f911afa03fe9bc56a4968..01d433ed6ce72da9317863b55fab505321c935c2 100644 (file)
@@ -132,8 +132,9 @@ static int gfs2_ail_empty_gl(struct gfs2_glock *gl)
        gfs2_trans_end(sdp);
 
 flush:
-       gfs2_log_flush(sdp, NULL, GFS2_LOG_HEAD_FLUSH_NORMAL |
-                      GFS2_LFC_AIL_EMPTY_GL);
+       if (!ret)
+               gfs2_log_flush(sdp, NULL, GFS2_LOG_HEAD_FLUSH_NORMAL |
+                               GFS2_LFC_AIL_EMPTY_GL);
        return ret;
 }