Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 348981
b: refs/heads/master
c: d8b79b2
h: refs/heads/master
i:
  348979: 5fb8094
v: v3
  • Loading branch information
Dan Carpenter authored and Jaegeuk Kim committed Jan 22, 2013
1 parent 79010ee commit 058b734
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9af45ef5ab8ce4a13c553200dc15509441fbd68f
refs/heads/master: d8b79b2f94600262fcfbffbe3df7fd3c83c6c51b
7 changes: 3 additions & 4 deletions trunk/fs/f2fs/recovery.c
Original file line number Diff line number Diff line change
Expand Up @@ -173,10 +173,9 @@ static int find_fsync_dnodes(struct f2fs_sb_info *sbi, struct list_head *head)
static void destroy_fsync_dnodes(struct f2fs_sb_info *sbi,
struct list_head *head)
{
struct list_head *this;
struct fsync_inode_entry *entry;
list_for_each(this, head) {
entry = list_entry(this, struct fsync_inode_entry, list);
struct fsync_inode_entry *entry, *tmp;

list_for_each_entry_safe(entry, tmp, head, list) {
iput(entry->inode);
list_del(&entry->list);
kmem_cache_free(fsync_entry_slab, entry);
Expand Down

0 comments on commit 058b734

Please sign in to comment.