This patch supports a large volume over about 2.x TB.
Becasue F2FS can't contain version bitmap for sit and nat in
4KB checkpoint block when volume size is over 2.x TB.

Signed-off-by: Changman Lee <[email protected]>
---
 include/f2fs_fs.h  |   10 ++++++++
 mkfs/f2fs_format.c |   69 +++++++++++++++++++++++++++++++++++++++++++---------
 2 files changed, 68 insertions(+), 11 deletions(-)

diff --git a/include/f2fs_fs.h b/include/f2fs_fs.h
index 94d8dc3..64dc1e2 100644
--- a/include/f2fs_fs.h
+++ b/include/f2fs_fs.h
@@ -172,6 +172,7 @@ struct f2fs_configuration {
        u_int64_t total_sectors;
        u_int32_t sectors_per_blk;
        u_int32_t blks_per_seg;
+       u_int32_t sit_bitmap_blks;
        char *vol_label;
        int heap;
        int32_t fd;
@@ -223,6 +224,7 @@ enum {
 #define F2FS_LOG_SECTORS_PER_BLOCK     3       /* 4KB: F2FS_BLKSIZE */
 #define F2FS_BLKSIZE                   4096    /* support only 4KB block */
 #define F2FS_MAX_EXTENSION             64      /* # of extension entries */
+#define F2FS_BLK_ALIGN(x)      (((x) + F2FS_BLKSIZE - 1) / F2FS_BLKSIZE)
 
 #define NULL_ADDR              0x0U
 #define NEW_ADDR               -1U
@@ -284,6 +286,7 @@ struct f2fs_super_block {
 /*
  * For checkpoint
  */
+#define CP_LARGE_VOL_FLAG      0x00000010
 #define CP_ERROR_FLAG          0x00000008
 #define CP_COMPACT_SUM_FLAG    0x00000004
 #define CP_ORPHAN_PRESENT_FLAG 0x00000002
@@ -457,6 +460,13 @@ struct f2fs_nat_block {
 #define SIT_ENTRY_PER_BLOCK (PAGE_CACHE_SIZE / sizeof(struct f2fs_sit_entry))
 
 /*
+ * F2FS uses 4 bytes to represent block address. As a result, supported size of
+ * disk is 16 TB and it equals to 16 * 1024 * 1024 / 2 segments.
+ */
+#define F2FS_MAX_SEGMENT       ((16 * 1024 * 1024) / 2)
+#define MAX_SIT_BITMAP_SIZE    ((F2FS_MAX_SEGMENT / SIT_ENTRY_PER_BLOCK) / 8)
+
+/*
  * Note that f2fs_sit_entry->vblocks has the following bit-field information.
  * [15:10] : allocation type such as CURSEG_XXXX_TYPE
  * [9:0] : valid block count
diff --git a/mkfs/f2fs_format.c b/mkfs/f2fs_format.c
index cef484a..6d7eef8 100644
--- a/mkfs/f2fs_format.c
+++ b/mkfs/f2fs_format.c
@@ -102,7 +102,8 @@ static int f2fs_prepare_super_block(void)
        u_int32_t blocks_for_sit, blocks_for_nat, blocks_for_ssa;
        u_int32_t total_valid_blks_available;
        u_int64_t zone_align_start_offset, diff, total_meta_segments;
-       u_int32_t sit_bitmap_size, max_nat_bitmap_size, max_nat_segments;
+       u_int32_t sit_bitmap_size, max_sit_bitmap_size;
+       u_int32_t max_nat_bitmap_size, max_nat_segments;
        u_int32_t total_zones;
 
        super_block.magic = cpu_to_le32(F2FS_SUPER_MAGIC);
@@ -217,8 +218,26 @@ static int f2fs_prepare_super_block(void)
         */
        sit_bitmap_size = ((le32_to_cpu(super_block.segment_count_sit) / 2) <<
                                log_blks_per_seg) / 8;
-       max_nat_bitmap_size = CHECKSUM_OFFSET - sizeof(struct f2fs_checkpoint) 
+ 1 -
-                       sit_bitmap_size;
+
+       if (sit_bitmap_size > MAX_SIT_BITMAP_SIZE)
+               max_sit_bitmap_size = MAX_SIT_BITMAP_SIZE;
+       else
+               max_sit_bitmap_size = sit_bitmap_size;
+
+       /*
+        * It should be reserved minimum 1 segment for nat.
+        * When sit is too large, we should expand cp area. It requires more 
pages for cp.
+        */
+       if (max_sit_bitmap_size >
+                       (CHECKSUM_OFFSET - sizeof(struct f2fs_checkpoint) + 
65)) {
+               max_nat_bitmap_size = CHECKSUM_OFFSET - sizeof(struct 
f2fs_checkpoint) + 1;
+               config.sit_bitmap_blks = F2FS_BLK_ALIGN(max_sit_bitmap_size);
+       } else {
+               max_nat_bitmap_size = CHECKSUM_OFFSET - sizeof(struct 
f2fs_checkpoint) + 1 -
+                       max_sit_bitmap_size;
+               config.sit_bitmap_blks = 0;
+       }
+
        max_nat_segments = (max_nat_bitmap_size * 8) >> log_blks_per_seg;
 
        if (le32_to_cpu(super_block.segment_count_nat) > max_nat_segments)
@@ -434,6 +453,7 @@ static int f2fs_write_check_point_pack(void)
        u_int64_t cp_seg_blk_offset = 0;
        u_int32_t crc = 0;
        int i;
+       char *sit_bitmap_buf = NULL;
 
        ckp = calloc(F2FS_BLKSIZE, 1);
        if (ckp == NULL) {
@@ -447,6 +467,12 @@ static int f2fs_write_check_point_pack(void)
                return -1;
        }
 
+       sit_bitmap_buf = calloc(F2FS_BLKSIZE, 1);
+       if (sit_bitmap_buf == NULL) {
+               MSG(1, "\tError: Calloc Failed for sit_bitmap_buf!!!\n");
+               return -1;
+       }
+
        /* 1. cp page 1 of checkpoint pack 1 */
        ckp->checkpoint_ver = cpu_to_le64(1);
        ckp->cur_node_segno[0] =
@@ -485,9 +511,11 @@ static int f2fs_write_check_point_pack(void)
                        ((le32_to_cpu(ckp->free_segment_count) + 6 -
                        le32_to_cpu(ckp->overprov_segment_count)) *
                         config.blks_per_seg));
-       ckp->cp_pack_total_block_count = cpu_to_le32(8);
+       ckp->cp_pack_total_block_count = cpu_to_le32(8 + 
config.sit_bitmap_blks);
        ckp->ckpt_flags = cpu_to_le32(CP_UMOUNT_FLAG);
-       ckp->cp_pack_start_sum = cpu_to_le32(1);
+       if (config.sit_bitmap_blks)
+               ckp->ckpt_flags |= cpu_to_le32(CP_LARGE_VOL_FLAG);
+       ckp->cp_pack_start_sum = cpu_to_le32(1 + config.sit_bitmap_blks);
        ckp->valid_node_count = cpu_to_le32(1);
        ckp->valid_inode_count = cpu_to_le32(1);
        ckp->next_free_nid = cpu_to_le32(
@@ -511,11 +539,20 @@ static int f2fs_write_check_point_pack(void)
        cp_seg_blk_offset *= blk_size_bytes;
 
        DBG(1, "\tWriting main segments, ckp at offset 0x%08"PRIx64"\n", 
cp_seg_blk_offset);
-       if (dev_write(ckp, cp_seg_blk_offset, F2FS_BLKSIZE)) {
+       if (dev_write(ckp, cp_seg_blk_offset, blk_size_bytes)) {
                MSG(1, "\tError: While writing the ckp to disk!!!\n");
                return -1;
        }
 
+       for (i = 0; i < config.sit_bitmap_blks; i++) {
+               cp_seg_blk_offset += blk_size_bytes;
+               if (dev_fill(sit_bitmap_buf, cp_seg_blk_offset, 
blk_size_bytes)) {
+                       MSG(1, "\tError: While zeroing out the sit bitmap area \
+                                       on disk!!!\n");
+                       return -1;
+               }
+       }
+
        /* 2. Prepare and write Segment summary for data blocks */
        memset(sum, 0, sizeof(struct f2fs_summary_block));
        SET_SUM_TYPE((&sum->footer), SUM_TYPE_DATA);
@@ -525,7 +562,7 @@ static int f2fs_write_check_point_pack(void)
 
        cp_seg_blk_offset += blk_size_bytes;
        DBG(1, "\tWriting segment summary for data, ckp at offset 
0x%08"PRIx64"\n", cp_seg_blk_offset);
-       if (dev_write(sum, cp_seg_blk_offset, F2FS_BLKSIZE)) {
+       if (dev_write(sum, cp_seg_blk_offset, blk_size_bytes)) {
                MSG(1, "\tError: While writing the sum_blk to disk!!!\n");
                return -1;
        }
@@ -609,7 +646,7 @@ static int f2fs_write_check_point_pack(void)
        /* 8. cp page2 */
        cp_seg_blk_offset += blk_size_bytes;
        DBG(1, "\tWriting cp page2, at offset 0x%08"PRIx64"\n", 
cp_seg_blk_offset);
-       if (dev_write(ckp, cp_seg_blk_offset, F2FS_BLKSIZE)) {
+       if (dev_write(ckp, cp_seg_blk_offset, blk_size_bytes)) {
                MSG(1, "\tError: While writing the ckp to disk!!!\n");
                return -1;
        }
@@ -626,21 +663,31 @@ static int f2fs_write_check_point_pack(void)
                                config.blks_per_seg) *
                                blk_size_bytes;
        DBG(1, "\tWriting cp page 1 of checkpoint pack 2, at offset 
0x%08"PRIx64"\n", cp_seg_blk_offset);
-       if (dev_write(ckp, cp_seg_blk_offset, F2FS_BLKSIZE)) {
+       if (dev_write(ckp, cp_seg_blk_offset, blk_size_bytes)) {
                MSG(1, "\tError: While writing the ckp to disk!!!\n");
                return -1;
        }
 
+       for (i = 0; i < config.sit_bitmap_blks; i++) {
+               cp_seg_blk_offset += blk_size_bytes;
+               if (dev_fill(sit_bitmap_buf, cp_seg_blk_offset, 
blk_size_bytes)) {
+                       MSG(1, "\tError: While zeroing out the sit bitmap area \
+                                       on disk!!!\n");
+                       return -1;
+               }
+       }
+
        /* 10. cp page 2 of check point pack 2 */
-       cp_seg_blk_offset += blk_size_bytes * 
(le32_to_cpu(ckp->cp_pack_total_block_count) - 1);
+       cp_seg_blk_offset += blk_size_bytes * 
(le32_to_cpu(ckp->cp_pack_total_block_count) - config.sit_bitmap_blks - 1);
        DBG(1, "\tWriting cp page 2 of checkpoint pack 2, at offset 
0x%08"PRIx64"\n", cp_seg_blk_offset);
-       if (dev_write(ckp, cp_seg_blk_offset, F2FS_BLKSIZE)) {
+       if (dev_write(ckp, cp_seg_blk_offset, blk_size_bytes)) {
                MSG(1, "\tError: While writing the ckp to disk!!!\n");
                return -1;
        }
 
        free(sum) ;
        free(ckp) ;
+       free(sit_bitmap_buf);
        return  0;
 }
 
-- 
1.7.9.5


------------------------------------------------------------------------------
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free."
http://p.sf.net/sfu/SauceLabs
_______________________________________________
Linux-f2fs-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

Reply via email to