Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 167916
b: refs/heads/master
c: 592b09a
h: refs/heads/master
v: v3
  • Loading branch information
Jens Axboe committed Oct 29, 2009
1 parent fbaac7a commit 7e1aa62
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 960cc0f4fef607baabc2232fbd7cce5368a9dcfd
refs/heads/master: 592b09a42fc3ae6737a0f3ecf4fee42ecd0296f8
16 changes: 16 additions & 0 deletions trunk/mm/backing-dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -610,6 +610,21 @@ static void bdi_wb_shutdown(struct backing_dev_info *bdi)
kthread_stop(wb->task);
}

/*
* This bdi is going away now, make sure that no super_blocks point to it
*/
static void bdi_prune_sb(struct backing_dev_info *bdi)
{
struct super_block *sb;

spin_lock(&sb_lock);
list_for_each_entry(sb, &super_blocks, s_list) {
if (sb->s_bdi == bdi)
sb->s_bdi = NULL;
}
spin_unlock(&sb_lock);
}

void bdi_unregister(struct backing_dev_info *bdi)
{
if (bdi->dev) {
Expand Down Expand Up @@ -682,6 +697,7 @@ 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++)
Expand Down

0 comments on commit 7e1aa62

Please sign in to comment.