gfs2: Flush delete work before shrinking inode cache
authorAndreas Gruenbacher <agruenba@redhat.com>
Tue, 6 Dec 2022 16:27:14 +0000 (17:27 +0100)
committerAndreas Gruenbacher <agruenba@redhat.com>
Tue, 31 Jan 2023 21:40:24 +0000 (22:40 +0100)
commit6b388abc33998330c6fe55a712d61be888fd7b67
tree71d05d2b7c57fd4b3bd8d6a7eb10d35b8f9795e2
parent6c0246a96e08cd1b5036c34c52de99bd9dffbb48
gfs2: Flush delete work before shrinking inode cache

In gfs2_kill_sb(), flush the delete work queue after setting the
SDF_DEACTIVATING flag.  This ensures that no new inodes will be
instantiated anymore, and the inode cache will be empty after the
following kill_block_super() -> generic_shutdown_super() ->
evict_inodes() call.

With that, function gfs2_make_fs_ro() now calls gfs2_flush_delete_work()
after the workqueue has been destroyed.  Skip that by checking for the
presence of the SDF_DEACTIVATING flag.

Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
fs/gfs2/ops_fstype.c
fs/gfs2/super.c