Description:
                 Controls the issue rate of segment discard commands.
 
+What:          /sys/fs/f2fs/<disk>/max_blkaddr
+Date:          November 2019
+Contact:       "Ramon Pantin" <pantin@google.com>
+Description:
+                Shows first block address of MAIN area.
+
 What:          /sys/fs/f2fs/<disk>/ipu_policy
 Date:          November 2013
 Contact:       "Jaegeuk Kim" <jaegeuk.kim@samsung.com>
 
                              reclaim the prefree segments to free segments.
                              By default, 5% over total # of segments.
 
+ main_blkaddr                 This value gives the first block address of
+                             MAIN area in the partition.
+
  max_small_discards          This parameter controls the number of discard
                              commands that consist small blocks less than 2MB.
                              The candidates to be discarded are cached until
 
 F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, gc_idle, gc_mode);
 F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, gc_urgent, gc_mode);
 F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, reclaim_segments, rec_prefree_segments);
+F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, main_blkaddr, main_blkaddr);
 F2FS_RW_ATTR(DCC_INFO, discard_cmd_control, max_small_discards, max_discards);
 F2FS_RW_ATTR(DCC_INFO, discard_cmd_control, discard_granularity, discard_granularity);
 F2FS_RW_ATTR(RESERVED_BLOCKS, f2fs_sb_info, reserved_blocks, reserved_blocks);
        ATTR_LIST(gc_idle),
        ATTR_LIST(gc_urgent),
        ATTR_LIST(reclaim_segments),
+       ATTR_LIST(main_blkaddr),
        ATTR_LIST(max_small_discards),
        ATTR_LIST(discard_granularity),
        ATTR_LIST(batched_trim_sections),