diff options
author | Jens Axboe <jens.axboe@oracle.com> | 2009-11-03 20:18:44 +0100 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2009-11-03 20:18:44 +0100 |
commit | 8c4db3355b0fcc9ad77431f15b955efa0645b5d0 (patch) | |
tree | 59182683545e9ca548d0e17e52d6326bb24b44cf /mm | |
parent | 5f04eeb8a76521dec371ceb05e8263889a8af2bc (diff) | |
download | linux-3.10-8c4db3355b0fcc9ad77431f15b955efa0645b5d0.tar.gz linux-3.10-8c4db3355b0fcc9ad77431f15b955efa0645b5d0.tar.bz2 linux-3.10-8c4db3355b0fcc9ad77431f15b955efa0645b5d0.zip |
backing-dev: bdi sb prune should be in the unregister path, not destroy
Commit 592b09a42fc3ae6737a0f3ecf4fee42ecd0296f8 was different from
the tested path, in that it moved the bdi super_block prune from
unregister to destroy context. This doesn't fully fix the sync hang
bug on unexpected device removal, as need to prune the bdi cache
pointer before killing flusher thread.
Tested-by: Artur Skawina <art.08.09@gmail.com>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/backing-dev.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mm/backing-dev.c b/mm/backing-dev.c index 1065b715ef6..11aee09dd2a 100644 --- a/mm/backing-dev.c +++ b/mm/backing-dev.c @@ -628,6 +628,8 @@ static void bdi_prune_sb(struct backing_dev_info *bdi) void bdi_unregister(struct backing_dev_info *bdi) { if (bdi->dev) { + bdi_prune_sb(bdi); + if (!bdi_cap_flush_forker(bdi)) bdi_wb_shutdown(bdi); bdi_debug_unregister(bdi); @@ -697,7 +699,6 @@ void bdi_destroy(struct backing_dev_info *bdi) spin_unlock(&inode_lock); } - bdi_prune_sb(bdi); bdi_unregister(bdi); for (i = 0; i < NR_BDI_STAT_ITEMS; i++) |