f2fs: clear page's up-to-date if block was deallocated
authorJaegeuk Kim <jaegeuk@kernel.org>
Thu, 26 Feb 2015 03:25:01 +0000 (19:25 -0800)
committerJaegeuk Kim <jaegeuk@kernel.org>
Fri, 10 Apr 2015 22:08:26 +0000 (15:08 -0700)
If page's on-disk block was deallocated, let's remove up-to-date flag to avoid
further access with wrong contents.

Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/data.c
fs/f2fs/dir.c
fs/f2fs/node.c

index ae5c414..62e31b2 100644 (file)
@@ -1259,8 +1259,10 @@ int do_write_data_page(struct page *page, struct f2fs_io_info *fio)
        fio->blk_addr = dn.data_blkaddr;
 
        /* This page is already truncated */
-       if (fio->blk_addr == NULL_ADDR)
+       if (fio->blk_addr == NULL_ADDR) {
+               ClearPageUptodate(page);
                goto out_writepage;
+       }
 
        set_page_writeback(page);
 
@@ -1355,6 +1357,8 @@ done:
        clear_cold_data(page);
 out:
        inode_dec_dirty_pages(inode);
+       if (err)
+               ClearPageUptodate(page);
        unlock_page(page);
        if (need_balance_fs)
                f2fs_balance_fs(sbi);
index 583896c..590aeef 100644 (file)
@@ -682,6 +682,7 @@ void f2fs_delete_entry(struct f2fs_dir_entry *dentry, struct page *page,
        if (bit_pos == NR_DENTRY_IN_BLOCK) {
                truncate_hole(dir, page->index, page->index + 1);
                clear_page_dirty_for_io(page);
+               ClearPagePrivate(page);
                ClearPageUptodate(page);
                inode_dec_dirty_pages(dir);
        }
index 2842369..35a9117 100644 (file)
@@ -1002,6 +1002,7 @@ static int read_node_page(struct page *page, int rw)
        get_node_info(sbi, page->index, &ni);
 
        if (unlikely(ni.blk_addr == NULL_ADDR)) {
+               ClearPageUptodate(page);
                f2fs_put_page(page, 1);
                return -ENOENT;
        }
@@ -1313,6 +1314,7 @@ static int f2fs_write_node_page(struct page *page,
 
        /* This page is already truncated */
        if (unlikely(ni.blk_addr == NULL_ADDR)) {
+               ClearPageUptodate(page);
                dec_page_count(sbi, F2FS_DIRTY_NODES);
                unlock_page(page);
                return 0;