diff options
author | Gu Zheng <guz.fnst@cn.fujitsu.com> | 2013-07-19 16:24:06 +0800 |
---|---|---|
committer | Chanho Park <chanho61.park@samsung.com> | 2014-11-18 11:43:56 +0900 |
commit | f91dc469fae2bb06e13511e4c36ddebd4d480f06 (patch) | |
tree | 53ce8577006b8123a5c5f0c61081bd104e48175d | |
parent | 226b451a050f32903da291b231434a124272d130 (diff) | |
download | linux-3.10-f91dc469fae2bb06e13511e4c36ddebd4d480f06.tar.gz linux-3.10-f91dc469fae2bb06e13511e4c36ddebd4d480f06.tar.bz2 linux-3.10-f91dc469fae2bb06e13511e4c36ddebd4d480f06.zip |
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>
-rw-r--r-- | fs/f2fs/checkpoint.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c index 66a6b85a51d..fe91773de13 100644 --- a/fs/f2fs/checkpoint.c +++ b/fs/f2fs/checkpoint.c @@ -237,13 +237,12 @@ out: void remove_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino) { - struct list_head *this, *next, *head; + struct list_head *head; struct orphan_inode_entry *orphan; mutex_lock(&sbi->orphan_inode_mutex); head = &sbi->orphan_inode_list; - list_for_each_safe(this, next, head) { - orphan = list_entry(this, struct orphan_inode_entry, list); + list_for_each_entry(orphan, head, list) { if (orphan->ino == ino) { list_del(&orphan->list); kmem_cache_free(orphan_entry_slab, orphan); |