Skip to content

Commit

Permalink
f2fs: remove redundant call to f2fs_put_page in delete entry
Browse files Browse the repository at this point in the history
Since, we anyway need to put the page after deleting entry. So, there is no
need to make same call under different conditions.
Move out the f2fs_put_page from the two conditions and call at once.

Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: Amit Sahrawat <a.sahrawat@samsung.com>
  • Loading branch information
Namjae Jeon authored and Jaegeuk Kim committed Dec 11, 2012
1 parent a0d4253 commit 508198b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions fs/f2fs/dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -514,10 +514,9 @@ void f2fs_delete_entry(struct f2fs_dir_entry *dentry, struct page *page,
ClearPageUptodate(page);
dec_page_count(sbi, F2FS_DIRTY_DENTS);
inode_dec_dirty_dents(dir);
f2fs_put_page(page, 1);
} else {
f2fs_put_page(page, 1);
}
f2fs_put_page(page, 1);

mutex_unlock_op(sbi, DENTRY_OPS);
}

Expand Down

0 comments on commit 508198b

Please sign in to comment.