f2fs: convert dev_valid_block_count to void
Signed-off-by: Gu Zheng <guz.fnst@cn.fujitsu.com> Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
This commit is contained in:
parent
58e674d6ab
commit
da19b0dc50
1 changed files with 1 additions and 2 deletions
|
@ -606,7 +606,7 @@ static inline bool inc_valid_block_count(struct f2fs_sb_info *sbi,
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int dec_valid_block_count(struct f2fs_sb_info *sbi,
|
static inline void dec_valid_block_count(struct f2fs_sb_info *sbi,
|
||||||
struct inode *inode,
|
struct inode *inode,
|
||||||
blkcnt_t count)
|
blkcnt_t count)
|
||||||
{
|
{
|
||||||
|
@ -616,7 +616,6 @@ static inline int dec_valid_block_count(struct f2fs_sb_info *sbi,
|
||||||
inode->i_blocks -= count;
|
inode->i_blocks -= count;
|
||||||
sbi->total_valid_block_count -= (block_t)count;
|
sbi->total_valid_block_count -= (block_t)count;
|
||||||
spin_unlock(&sbi->stat_lock);
|
spin_unlock(&sbi->stat_lock);
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void inc_page_count(struct f2fs_sb_info *sbi, int count_type)
|
static inline void inc_page_count(struct f2fs_sb_info *sbi, int count_type)
|
||||||
|
|
Loading…
Reference in a new issue