f2fs: kill dead code in __insert_extent_tree
authorChao Yu <chao2.yu@samsung.com>
Wed, 19 Aug 2015 11:14:15 +0000 (19:14 +0800)
committerJaegeuk Kim <jaegeuk@kernel.org>
Sat, 22 Aug 2015 05:45:17 +0000 (22:45 -0700)
commita6f7834594a284316b38d0885b2ee1ab47899dbc
tree7fe95c2d666063d516ebe5e797780d90043332a2
parent029e13cc3221be4bc46909225142277fee52c37e
f2fs: kill dead code in __insert_extent_tree

After commit 0f825ee6e873 ("f2fs: add new interfaces for extent tree"),
f2fs_init_extent_tree becomes the only caller of __insert_extent_tree, and
in f2fs_init_extent_tree, we will only insert extent node in an empty tree,
so __try_{back,front}_merge in __insert_extent_tree will never be called.

This patch removes these dead codes, besides, rename __insert_extent_tree
to __init_extent_tree for readability.

Signed-off-by: Chao Yu <chao2.yu@samsung.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/extent_cache.c