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>
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);
}