This patch allow write data to normal file when writting
new checkpoint.

Signed-off-by: Yunlei He <[email protected]>
---
 fs/f2fs/checkpoint.c | 26 +++++++++++++++++---------
 fs/f2fs/data.c       | 23 ++++++++++++++++-------
 fs/f2fs/f2fs.h       |  1 +
 fs/f2fs/super.c      |  1 +
 4 files changed, 35 insertions(+), 16 deletions(-)

diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c
index 22348c7..3671c5e 100644
--- a/fs/f2fs/checkpoint.c
+++ b/fs/f2fs/checkpoint.c
@@ -942,6 +942,19 @@ int f2fs_sync_inode_meta(struct f2fs_sb_info *sbi)
        return 0;
 }
 
+void prepare_cp_block(struct f2fs_sb_info *sbi)
+{
+       struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
+       struct f2fs_nm_info *nm_i = NM_I(sbi);
+       nid_t last_nid = nm_i->next_scan_nid;
+
+       next_free_nid(sbi, &last_nid);
+       ckpt->valid_block_count = cpu_to_le64(valid_user_blocks(sbi));
+       ckpt->valid_node_count = cpu_to_le32(valid_node_count(sbi));
+       ckpt->valid_inode_count = cpu_to_le32(valid_inode_count(sbi));
+       ckpt->next_free_nid = cpu_to_le32(last_nid);
+}
+
 /*
  * Freeze all the FS-operations for checkpoint.
  */
@@ -980,9 +993,10 @@ static int block_operations(struct f2fs_sb_info *sbi)
         * POR: we should ensure that there are no dirty node pages
         * until finishing nat/sit flush.
         */
+
+       down_write(&sbi->node_change);
 retry_flush_nodes:
        down_write(&sbi->node_write);
-
        if (get_pages(sbi, F2FS_DIRTY_NODES)) {
                up_write(&sbi->node_write);
                err = sync_node_pages(sbi, &wbc);
@@ -993,6 +1007,8 @@ static int block_operations(struct f2fs_sb_info *sbi)
                goto retry_flush_nodes;
        }
 out:
+       prepare_cp_block(sbi);
+       up_write(&sbi->node_change);
        blk_finish_plug(&plug);
        return err;
 }
@@ -1059,7 +1075,6 @@ static int do_checkpoint(struct f2fs_sb_info *sbi, struct 
cp_control *cpc)
        struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
        struct f2fs_nm_info *nm_i = NM_I(sbi);
        unsigned long orphan_num = sbi->im[ORPHAN_INO].ino_num;
-       nid_t last_nid = nm_i->next_scan_nid;
        block_t start_blk;
        unsigned int data_sum_blocks, orphan_blocks;
        __u32 crc32 = 0;
@@ -1076,14 +1091,11 @@ static int do_checkpoint(struct f2fs_sb_info *sbi, 
struct cp_control *cpc)
                        return -EIO;
        }
 
-       next_free_nid(sbi, &last_nid);
-
        /*
         * modify checkpoint
         * version number is already updated
         */
        ckpt->elapsed_time = cpu_to_le64(get_mtime(sbi));
-       ckpt->valid_block_count = cpu_to_le64(valid_user_blocks(sbi));
        ckpt->free_segment_count = cpu_to_le32(free_segments(sbi));
        for (i = 0; i < NR_CURSEG_NODE_TYPE; i++) {
                ckpt->cur_node_segno[i] =
@@ -1102,10 +1114,6 @@ static int do_checkpoint(struct f2fs_sb_info *sbi, 
struct cp_control *cpc)
                                curseg_alloc_type(sbi, i + CURSEG_HOT_DATA);
        }
 
-       ckpt->valid_node_count = cpu_to_le32(valid_node_count(sbi));
-       ckpt->valid_inode_count = cpu_to_le32(valid_inode_count(sbi));
-       ckpt->next_free_nid = cpu_to_le32(last_nid);
-
        /* 2 cp  + n data seg summary + orphan inode blocks */
        data_sum_blocks = npages_for_summary_flush(sbi, false);
        spin_lock(&sbi->cp_lock);
diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c
index 1375fef..c7eccb0 100644
--- a/fs/f2fs/data.c
+++ b/fs/f2fs/data.c
@@ -827,7 +827,9 @@ int f2fs_map_blocks(struct inode *inode, struct 
f2fs_map_blocks *map,
        }
 
 next_dnode:
-       if (create)
+       if (create && flag == F2FS_GET_BLOCK_PRE_AIO)
+               down_read(&sbi->node_change);
+       else if (create)
                f2fs_lock_op(sbi);
 
        /* When reading holes, we need its node page */
@@ -936,17 +938,23 @@ int f2fs_map_blocks(struct inode *inode, struct 
f2fs_map_blocks *map,
                goto next_block;
 
        f2fs_put_dnode(&dn);
-
-       if (create) {
+       if (create && flag == F2FS_GET_BLOCK_PRE_AIO) {
+               up_read(&sbi->node_change);
+               f2fs_balance_fs(sbi, dn.node_changed);
+       } else if (create) {
                f2fs_unlock_op(sbi);
                f2fs_balance_fs(sbi, dn.node_changed);
        }
+
        goto next_dnode;
 
 sync_out:
        f2fs_put_dnode(&dn);
 unlock_out:
-       if (create) {
+       if (create && flag == F2FS_GET_BLOCK_PRE_AIO) {
+               up_read(&sbi->node_change);
+               f2fs_balance_fs(sbi, dn.node_changed);
+       } else if (create) {
                f2fs_unlock_op(sbi);
                f2fs_balance_fs(sbi, dn.node_changed);
        }
@@ -1686,7 +1694,7 @@ static int prepare_write_begin(struct f2fs_sb_info *sbi,
 
        if (f2fs_has_inline_data(inode) ||
                        (pos & PAGE_MASK) >= i_size_read(inode)) {
-               f2fs_lock_op(sbi);
+               down_read(&sbi->node_change);
                locked = true;
        }
 restart:
@@ -1703,6 +1711,7 @@ static int prepare_write_begin(struct f2fs_sb_info *sbi,
                if (pos + len <= MAX_INLINE_DATA) {
                        read_inline_data(page, ipage);
                        set_inode_flag(inode, FI_DATA_EXIST);
+                       dn.node_changed = true;
                        if (inode->i_nlink)
                                set_inline_node(ipage);
                } else {
@@ -1722,7 +1731,7 @@ static int prepare_write_begin(struct f2fs_sb_info *sbi,
                        err = get_dnode_of_data(&dn, index, LOOKUP_NODE);
                        if (err || dn.data_blkaddr == NULL_ADDR) {
                                f2fs_put_dnode(&dn);
-                               f2fs_lock_op(sbi);
+                               down_read(&sbi->node_change);
                                locked = true;
                                goto restart;
                        }
@@ -1736,7 +1745,7 @@ static int prepare_write_begin(struct f2fs_sb_info *sbi,
        f2fs_put_dnode(&dn);
 unlock_out:
        if (locked)
-               f2fs_unlock_op(sbi);
+               up_read(&sbi->node_change);
        return err;
 }
 
diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h
index 7edb3be..0c3b148 100644
--- a/fs/f2fs/f2fs.h
+++ b/fs/f2fs/f2fs.h
@@ -830,6 +830,7 @@ struct f2fs_sb_info {
        struct mutex cp_mutex;                  /* checkpoint procedure lock */
        struct rw_semaphore cp_rwsem;           /* blocking FS operations */
        struct rw_semaphore node_write;         /* locking node writes */
+       struct rw_semaphore node_change;                /* locking node change 
*/
        wait_queue_head_t cp_wait;
        unsigned long last_time[MAX_TIME];      /* to store time in jiffies */
        long interval_time[MAX_TIME];           /* to store thresholds */
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c
index 17126a2..49434f9 100644
--- a/fs/f2fs/super.c
+++ b/fs/f2fs/super.c
@@ -1918,6 +1918,7 @@ static int f2fs_fill_super(struct super_block *sb, void 
*data, int silent)
        mutex_init(&sbi->gc_mutex);
        mutex_init(&sbi->cp_mutex);
        init_rwsem(&sbi->node_write);
+       init_rwsem(&sbi->node_change);
 
        /* disallow all the data/node/meta page writes */
        set_sbi_flag(sbi, SBI_POR_DOING);
-- 
2.10.1


------------------------------------------------------------------------------
Announcing the Oxford Dictionaries API! The API offers world-renowned
dictionary content that is easy and intuitive to access. Sign up for an
account today to start using our lexical data to power your apps and
projects. Get started today and enter our developer competition.
http://sdm.link/oxford
_______________________________________________
Linux-f2fs-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

Reply via email to