From: Bob Peterson Date: Fri, 28 Jul 2017 12:22:55 +0000 (-0500) Subject: GFS2: Delete debugfs files only after we evict the glocks X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=b2fb7dab7f193909e9a0ad489a91666b8c55eff1;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git GFS2: Delete debugfs files only after we evict the glocks This patch moves the call to gfs2_delete_debugfs_file so that it comes after the glock hash table has been cleared. This way we can query the debugfs files if umount hangs. Signed-off-by: Bob Peterson --- diff --git a/fs/gfs2/ops_fstype.c b/fs/gfs2/ops_fstype.c index e76058d34b74..51752de54f11 100644 --- a/fs/gfs2/ops_fstype.c +++ b/fs/gfs2/ops_fstype.c @@ -1388,7 +1388,6 @@ static void gfs2_kill_sb(struct super_block *sb) sdp->sd_root_dir = NULL; sdp->sd_master_dir = NULL; shrink_dcache_sb(sb); - gfs2_delete_debugfs_file(sdp); free_percpu(sdp->sd_lkstats); kill_block_super(sb); } diff --git a/fs/gfs2/super.c b/fs/gfs2/super.c index 87271a859a8d..1918bb5fc943 100644 --- a/fs/gfs2/super.c +++ b/fs/gfs2/super.c @@ -924,6 +924,7 @@ restart: gfs2_jindex_free(sdp); /* Take apart glock structures and buffer lists */ gfs2_gl_hash_clear(sdp); + gfs2_delete_debugfs_file(sdp); /* Unmount the locking protocol */ gfs2_lm_unmount(sdp);