]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
gfs2: forcibly flush ail to relieve memory pressure
authorAbhi Das <adas@redhat.com>
Fri, 4 Aug 2017 17:15:32 +0000 (12:15 -0500)
committerBob Peterson <rpeterso@redhat.com>
Thu, 10 Aug 2017 15:51:03 +0000 (10:51 -0500)
On systems with low memory, it is possible for gfs2 to infinitely
loop in balance_dirty_pages() under heavy IO (creating sparse files).

balance_dirty_pages() attempts to write out the dirty pages via
gfs2_writepages() but none are found because these dirty pages are
being used by the journaling code in the ail. Normally, the journal
has an upper threshold which when hit triggers an automatic flush
of the ail. But this threshold can be higher than the number of
allowable dirty pages and result in the ail never being flushed.

This patch forces an ail flush when gfs2_writepages() fails to write
anything. This is a good indication that the ail might be holding
some dirty pages.

Signed-off-by: Abhi Das <adas@redhat.com>
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
fs/gfs2/aops.c
fs/gfs2/incore.h
fs/gfs2/log.c

index ed7a2e252ad802bf587006b00939696ea2cbe9eb..68ed069625370fa821de91b058c4c9d229db3a89 100644 (file)
@@ -234,7 +234,19 @@ out:
 static int gfs2_writepages(struct address_space *mapping,
                           struct writeback_control *wbc)
 {
-       return mpage_writepages(mapping, wbc, gfs2_get_block_noalloc);
+       struct gfs2_sbd *sdp = gfs2_mapping2sbd(mapping);
+       int ret = mpage_writepages(mapping, wbc, gfs2_get_block_noalloc);
+
+       /*
+        * Even if we didn't write any pages here, we might still be holding
+        * dirty pages in the ail. We forcibly flush the ail because we don't
+        * want balance_dirty_pages() to loop indefinitely trying to write out
+        * pages held in the ail that it can't find.
+        */
+       if (ret == 0)
+               set_bit(SDF_FORCE_AIL_FLUSH, &sdp->sd_flags);
+
+       return ret;
 }
 
 /**
index 73fce76e67ee84b49495389c44449738008a4312..a7b0331c549da73895f9c5ab79e2444588dc2397 100644 (file)
@@ -606,6 +606,7 @@ enum {
        SDF_NOJOURNALID         = 6,
        SDF_RORECOVERY          = 7, /* read only recovery */
        SDF_SKIP_DLM_UNLOCK     = 8,
+       SDF_FORCE_AIL_FLUSH     = 9,
 };
 
 enum gfs2_freeze_state {
index 9a624f6944002af70b75c32c93fc6da1924986f7..31585c2d22feaaa0ca7b6bab6e8eaa52cdb46eb7 100644 (file)
@@ -898,6 +898,10 @@ static inline int gfs2_jrnl_flush_reqd(struct gfs2_sbd *sdp)
 static inline int gfs2_ail_flush_reqd(struct gfs2_sbd *sdp)
 {
        unsigned int used_blocks = sdp->sd_jdesc->jd_blocks - atomic_read(&sdp->sd_log_blks_free);
+
+       if (test_and_clear_bit(SDF_FORCE_AIL_FLUSH, &sdp->sd_flags))
+               return 1;
+
        return used_blocks + atomic_read(&sdp->sd_log_blks_needed) >=
                atomic_read(&sdp->sd_log_thresh2);
 }