forked from Minki/linux
f2fs: update_inode_page should be done all the time
In order to make fs consistency, update_inode_page should not be failed all the time. Otherwise, it is possible to lose some metadata in the inode like a link count. Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
This commit is contained in:
parent
6d0abeca32
commit
744602cf45
@ -55,8 +55,7 @@ static void f2fs_write_end_io(struct bio *bio, int err)
|
|||||||
if (unlikely(err)) {
|
if (unlikely(err)) {
|
||||||
SetPageError(page);
|
SetPageError(page);
|
||||||
set_bit(AS_EIO, &page->mapping->flags);
|
set_bit(AS_EIO, &page->mapping->flags);
|
||||||
set_ckpt_flags(sbi->ckpt, CP_ERROR_FLAG);
|
f2fs_stop_checkpoint(sbi);
|
||||||
sbi->sb->s_flags |= MS_RDONLY;
|
|
||||||
}
|
}
|
||||||
end_page_writeback(page);
|
end_page_writeback(page);
|
||||||
dec_page_count(sbi, F2FS_WRITEBACK);
|
dec_page_count(sbi, F2FS_WRITEBACK);
|
||||||
|
@ -1023,6 +1023,12 @@ static inline int f2fs_readonly(struct super_block *sb)
|
|||||||
return sb->s_flags & MS_RDONLY;
|
return sb->s_flags & MS_RDONLY;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline void f2fs_stop_checkpoint(struct f2fs_sb_info *sbi)
|
||||||
|
{
|
||||||
|
set_ckpt_flags(sbi->ckpt, CP_ERROR_FLAG);
|
||||||
|
sbi->sb->s_flags |= MS_RDONLY;
|
||||||
|
}
|
||||||
|
|
||||||
#define get_inode_mode(i) \
|
#define get_inode_mode(i) \
|
||||||
((is_inode_flag_set(F2FS_I(i), FI_ACL_MODE)) ? \
|
((is_inode_flag_set(F2FS_I(i), FI_ACL_MODE)) ? \
|
||||||
(F2FS_I(i)->i_acl_mode) : ((i)->i_mode))
|
(F2FS_I(i)->i_acl_mode) : ((i)->i_mode))
|
||||||
@ -1048,7 +1054,7 @@ void f2fs_set_inode_flags(struct inode *);
|
|||||||
struct inode *f2fs_iget(struct super_block *, unsigned long);
|
struct inode *f2fs_iget(struct super_block *, unsigned long);
|
||||||
int try_to_free_nats(struct f2fs_sb_info *, int);
|
int try_to_free_nats(struct f2fs_sb_info *, int);
|
||||||
void update_inode(struct inode *, struct page *);
|
void update_inode(struct inode *, struct page *);
|
||||||
int update_inode_page(struct inode *);
|
void update_inode_page(struct inode *);
|
||||||
int f2fs_write_inode(struct inode *, struct writeback_control *);
|
int f2fs_write_inode(struct inode *, struct writeback_control *);
|
||||||
void f2fs_evict_inode(struct inode *);
|
void f2fs_evict_inode(struct inode *);
|
||||||
|
|
||||||
|
@ -212,24 +212,29 @@ void update_inode(struct inode *inode, struct page *node_page)
|
|||||||
clear_inode_flag(F2FS_I(inode), FI_DIRTY_INODE);
|
clear_inode_flag(F2FS_I(inode), FI_DIRTY_INODE);
|
||||||
}
|
}
|
||||||
|
|
||||||
int update_inode_page(struct inode *inode)
|
void update_inode_page(struct inode *inode)
|
||||||
{
|
{
|
||||||
struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
|
struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
|
||||||
struct page *node_page;
|
struct page *node_page;
|
||||||
|
retry:
|
||||||
node_page = get_node_page(sbi, inode->i_ino);
|
node_page = get_node_page(sbi, inode->i_ino);
|
||||||
if (IS_ERR(node_page))
|
if (IS_ERR(node_page)) {
|
||||||
return PTR_ERR(node_page);
|
int err = PTR_ERR(node_page);
|
||||||
|
if (err == -ENOMEM) {
|
||||||
|
cond_resched();
|
||||||
|
goto retry;
|
||||||
|
} else if (err != -ENOENT) {
|
||||||
|
f2fs_stop_checkpoint(sbi);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
update_inode(inode, node_page);
|
update_inode(inode, node_page);
|
||||||
f2fs_put_page(node_page, 1);
|
f2fs_put_page(node_page, 1);
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int f2fs_write_inode(struct inode *inode, struct writeback_control *wbc)
|
int f2fs_write_inode(struct inode *inode, struct writeback_control *wbc)
|
||||||
{
|
{
|
||||||
struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
|
struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
|
||||||
int ret;
|
|
||||||
|
|
||||||
if (inode->i_ino == F2FS_NODE_INO(sbi) ||
|
if (inode->i_ino == F2FS_NODE_INO(sbi) ||
|
||||||
inode->i_ino == F2FS_META_INO(sbi))
|
inode->i_ino == F2FS_META_INO(sbi))
|
||||||
@ -243,13 +248,13 @@ int f2fs_write_inode(struct inode *inode, struct writeback_control *wbc)
|
|||||||
* during the urgent cleaning time when runing out of free sections.
|
* during the urgent cleaning time when runing out of free sections.
|
||||||
*/
|
*/
|
||||||
f2fs_lock_op(sbi);
|
f2fs_lock_op(sbi);
|
||||||
ret = update_inode_page(inode);
|
update_inode_page(inode);
|
||||||
f2fs_unlock_op(sbi);
|
f2fs_unlock_op(sbi);
|
||||||
|
|
||||||
if (wbc)
|
if (wbc)
|
||||||
f2fs_balance_fs(sbi);
|
f2fs_balance_fs(sbi);
|
||||||
|
|
||||||
return ret;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user