|
@@ -71,6 +71,8 @@ static struct extent_tree *__grab_extent_tree(struct inode *inode)
|
|
atomic_set(&et->refcount, 0);
|
|
atomic_set(&et->refcount, 0);
|
|
et->count = 0;
|
|
et->count = 0;
|
|
atomic_inc(&sbi->total_ext_tree);
|
|
atomic_inc(&sbi->total_ext_tree);
|
|
|
|
+ } else {
|
|
|
|
+ atomic_dec(&sbi->total_zombie_tree);
|
|
}
|
|
}
|
|
atomic_inc(&et->refcount);
|
|
atomic_inc(&et->refcount);
|
|
up_write(&sbi->extent_tree_lock);
|
|
up_write(&sbi->extent_tree_lock);
|
|
@@ -547,10 +549,14 @@ unsigned int f2fs_shrink_extent_tree(struct f2fs_sb_info *sbi, int nr_shrink)
|
|
unsigned int found;
|
|
unsigned int found;
|
|
unsigned int node_cnt = 0, tree_cnt = 0;
|
|
unsigned int node_cnt = 0, tree_cnt = 0;
|
|
int remained;
|
|
int remained;
|
|
|
|
+ bool do_free = false;
|
|
|
|
|
|
if (!test_opt(sbi, EXTENT_CACHE))
|
|
if (!test_opt(sbi, EXTENT_CACHE))
|
|
return 0;
|
|
return 0;
|
|
|
|
|
|
|
|
+ if (!atomic_read(&sbi->total_zombie_tree))
|
|
|
|
+ goto free_node;
|
|
|
|
+
|
|
if (!down_write_trylock(&sbi->extent_tree_lock))
|
|
if (!down_write_trylock(&sbi->extent_tree_lock))
|
|
goto out;
|
|
goto out;
|
|
|
|
|
|
@@ -571,6 +577,7 @@ unsigned int f2fs_shrink_extent_tree(struct f2fs_sb_info *sbi, int nr_shrink)
|
|
radix_tree_delete(root, et->ino);
|
|
radix_tree_delete(root, et->ino);
|
|
kmem_cache_free(extent_tree_slab, et);
|
|
kmem_cache_free(extent_tree_slab, et);
|
|
atomic_dec(&sbi->total_ext_tree);
|
|
atomic_dec(&sbi->total_ext_tree);
|
|
|
|
+ atomic_dec(&sbi->total_zombie_tree);
|
|
tree_cnt++;
|
|
tree_cnt++;
|
|
|
|
|
|
if (node_cnt + tree_cnt >= nr_shrink)
|
|
if (node_cnt + tree_cnt >= nr_shrink)
|
|
@@ -580,6 +587,7 @@ unsigned int f2fs_shrink_extent_tree(struct f2fs_sb_info *sbi, int nr_shrink)
|
|
}
|
|
}
|
|
up_write(&sbi->extent_tree_lock);
|
|
up_write(&sbi->extent_tree_lock);
|
|
|
|
|
|
|
|
+free_node:
|
|
/* 2. remove LRU extent entries */
|
|
/* 2. remove LRU extent entries */
|
|
if (!down_write_trylock(&sbi->extent_tree_lock))
|
|
if (!down_write_trylock(&sbi->extent_tree_lock))
|
|
goto out;
|
|
goto out;
|
|
@@ -591,9 +599,13 @@ unsigned int f2fs_shrink_extent_tree(struct f2fs_sb_info *sbi, int nr_shrink)
|
|
if (!remained--)
|
|
if (!remained--)
|
|
break;
|
|
break;
|
|
list_del_init(&en->list);
|
|
list_del_init(&en->list);
|
|
|
|
+ do_free = true;
|
|
}
|
|
}
|
|
spin_unlock(&sbi->extent_lock);
|
|
spin_unlock(&sbi->extent_lock);
|
|
|
|
|
|
|
|
+ if (do_free == false)
|
|
|
|
+ goto unlock_out;
|
|
|
|
+
|
|
/*
|
|
/*
|
|
* reset ino for searching victims from beginning of global extent tree.
|
|
* reset ino for searching victims from beginning of global extent tree.
|
|
*/
|
|
*/
|
|
@@ -651,6 +663,7 @@ void f2fs_destroy_extent_tree(struct inode *inode)
|
|
|
|
|
|
if (inode->i_nlink && !is_bad_inode(inode) && et->count) {
|
|
if (inode->i_nlink && !is_bad_inode(inode) && et->count) {
|
|
atomic_dec(&et->refcount);
|
|
atomic_dec(&et->refcount);
|
|
|
|
+ atomic_inc(&sbi->total_zombie_tree);
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -716,6 +729,7 @@ void init_extent_cache_info(struct f2fs_sb_info *sbi)
|
|
INIT_LIST_HEAD(&sbi->extent_list);
|
|
INIT_LIST_HEAD(&sbi->extent_list);
|
|
spin_lock_init(&sbi->extent_lock);
|
|
spin_lock_init(&sbi->extent_lock);
|
|
atomic_set(&sbi->total_ext_tree, 0);
|
|
atomic_set(&sbi->total_ext_tree, 0);
|
|
|
|
+ atomic_set(&sbi->total_zombie_tree, 0);
|
|
atomic_set(&sbi->total_ext_node, 0);
|
|
atomic_set(&sbi->total_ext_node, 0);
|
|
}
|
|
}
|
|
|
|
|