|
@@ -431,7 +431,7 @@ struct f2fs_inode_info {
|
|
|
/* Use below internally in f2fs*/
|
|
|
unsigned long flags; /* use to pass per-file flags */
|
|
|
struct rw_semaphore i_sem; /* protect fi info */
|
|
|
- struct percpu_counter dirty_pages; /* # of dirty pages */
|
|
|
+ atomic_t dirty_pages; /* # of dirty pages */
|
|
|
f2fs_hash_t chash; /* hash value of given file name */
|
|
|
unsigned int clevel; /* maximum level of given file name */
|
|
|
nid_t i_xattr_nid; /* node id that contains xattrs */
|
|
@@ -1269,7 +1269,7 @@ static inline void inc_page_count(struct f2fs_sb_info *sbi, int count_type)
|
|
|
|
|
|
static inline void inode_inc_dirty_pages(struct inode *inode)
|
|
|
{
|
|
|
- percpu_counter_inc(&F2FS_I(inode)->dirty_pages);
|
|
|
+ atomic_inc(&F2FS_I(inode)->dirty_pages);
|
|
|
inc_page_count(F2FS_I_SB(inode), S_ISDIR(inode->i_mode) ?
|
|
|
F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA);
|
|
|
}
|
|
@@ -1285,7 +1285,7 @@ static inline void inode_dec_dirty_pages(struct inode *inode)
|
|
|
!S_ISLNK(inode->i_mode))
|
|
|
return;
|
|
|
|
|
|
- percpu_counter_dec(&F2FS_I(inode)->dirty_pages);
|
|
|
+ atomic_dec(&F2FS_I(inode)->dirty_pages);
|
|
|
dec_page_count(F2FS_I_SB(inode), S_ISDIR(inode->i_mode) ?
|
|
|
F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA);
|
|
|
}
|
|
@@ -1295,9 +1295,9 @@ static inline s64 get_pages(struct f2fs_sb_info *sbi, int count_type)
|
|
|
return atomic_read(&sbi->nr_pages[count_type]);
|
|
|
}
|
|
|
|
|
|
-static inline s64 get_dirty_pages(struct inode *inode)
|
|
|
+static inline int get_dirty_pages(struct inode *inode)
|
|
|
{
|
|
|
- return percpu_counter_sum_positive(&F2FS_I(inode)->dirty_pages);
|
|
|
+ return atomic_read(&F2FS_I(inode)->dirty_pages);
|
|
|
}
|
|
|
|
|
|
static inline int get_blocktype_secs(struct f2fs_sb_info *sbi, int block_type)
|