Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f8b2c1f9 authored by Jaegeuk Kim's avatar Jaegeuk Kim
Browse files

f2fs: introduce get_dirty_dents for readability



The get_dirty_dents gives us the number of dirty dentry pages.

Signed-off-by: default avatarJaegeuk Kim <jaegeuk.kim@samsung.com>
parent 04c09388
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -619,7 +619,7 @@ void remove_dirty_dir_inode(struct inode *inode)
		return;

	spin_lock(&sbi->dir_inode_lock);
	if (atomic_read(&F2FS_I(inode)->dirty_dents)) {
	if (get_dirty_dents(inode)) {
		spin_unlock(&sbi->dir_inode_lock);
		return;
	}
+5 −0
Original line number Diff line number Diff line
@@ -704,6 +704,11 @@ static inline int get_pages(struct f2fs_sb_info *sbi, int count_type)
	return atomic_read(&sbi->nr_pages[count_type]);
}

static inline int get_dirty_dents(struct inode *inode)
{
	return atomic_read(&F2FS_I(inode)->dirty_dents);
}

static inline int get_blocktype_secs(struct f2fs_sb_info *sbi, int block_type)
{
	unsigned int pages_per_sec = sbi->segs_per_sec *
+1 −1
Original line number Diff line number Diff line
@@ -273,7 +273,7 @@ void f2fs_evict_inode(struct inode *inode)
			inode->i_ino == F2FS_META_INO(sbi))
		goto no_delete;

	f2fs_bug_on(atomic_read(&F2FS_I(inode)->dirty_dents));
	f2fs_bug_on(get_dirty_dents(inode));
	remove_dirty_dir_inode(inode);

	if (inode->i_nlink || is_bad_inode(inode))