aboutsummaryrefslogtreecommitdiffstats
path: root/fs/f2fs
diff options
context:
space:
mode:
authorGu Zheng <guz.fnst@cn.fujitsu.com>2013-07-19 04:24:06 -0400
committerJaegeuk Kim <jaegeuk.kim@samsung.com>2013-07-30 02:17:03 -0400
commit60ed9a0f53c55d4be3882f7522e8349a5011a1d5 (patch)
tree9bac84b5b1b8f6cbcdb63cbd60811e151bc42fcc /fs/f2fs
parent2d219c518882d2b2bac77742a6a8979c9dad051a (diff)
f2fs: use list_for_each rather than list_for_each_safe, in remove_orphan_inode()
As we remove the target single node, so list_for_each is enought, in order to clean up, we use list_for_each_entry instead. Signed-off-by: Gu Zheng <guz.fnst@cn.fujitsu.com> Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Diffstat (limited to 'fs/f2fs')
-rw-r--r--fs/f2fs/checkpoint.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c
index 66a6b85a51d8..fe91773de130 100644
--- a/fs/f2fs/checkpoint.c
+++ b/fs/f2fs/checkpoint.c
@@ -237,13 +237,12 @@ out:
237 237
238void remove_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino) 238void remove_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino)
239{ 239{
240 struct list_head *this, *next, *head; 240 struct list_head *head;
241 struct orphan_inode_entry *orphan; 241 struct orphan_inode_entry *orphan;
242 242
243 mutex_lock(&sbi->orphan_inode_mutex); 243 mutex_lock(&sbi->orphan_inode_mutex);
244 head = &sbi->orphan_inode_list; 244 head = &sbi->orphan_inode_list;
245 list_for_each_safe(this, next, head) { 245 list_for_each_entry(orphan, head, list) {
246 orphan = list_entry(this, struct orphan_inode_entry, list);
247 if (orphan->ino == ino) { 246 if (orphan->ino == ino) {
248 list_del(&orphan->list); 247 list_del(&orphan->list);
249 kmem_cache_free(orphan_entry_slab, orphan); 248 kmem_cache_free(orphan_entry_slab, orphan);