diff options
author | Jaegeuk Kim <jaegeuk@kernel.org> | 2015-04-30 22:37:50 -0700 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2015-05-28 15:41:39 -0700 |
commit | a66cdd985532e69999b79249cd3b4a6bccd0f84b (patch) | |
tree | f031e26f195e77b8e49e37a86dbf96af5436b6f0 /fs/f2fs/segment.h | |
parent | d6c67a4fee866ad95fe1d727f80a56f956737706 (diff) | |
download | talos-obmc-linux-a66cdd985532e69999b79249cd3b4a6bccd0f84b.tar.gz talos-obmc-linux-a66cdd985532e69999b79249cd3b4a6bccd0f84b.zip |
f2fs: introduce discard_map for f2fs_trim_fs
This patch adds a bitmap for discard issues from f2fs_trim_fs.
There-in rule is to issue discard commands only for invalidated blocks
after mount.
Once mount is done, f2fs_trim_fs trims out whole invalid area.
After ehn, it will not issue and discrads redundantly.
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/segment.h')
-rw-r--r-- | fs/f2fs/segment.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/f2fs/segment.h b/fs/f2fs/segment.h index 85d7fa7514b2..849635778118 100644 --- a/fs/f2fs/segment.h +++ b/fs/f2fs/segment.h @@ -163,6 +163,7 @@ struct seg_entry { */ unsigned short ckpt_valid_blocks; unsigned char *ckpt_valid_map; + unsigned char *discard_map; unsigned char type; /* segment type like CURSEG_XXX_TYPE */ unsigned long long mtime; /* modification time of the segment */ }; |