Chao Yu
dfc08a12e4
f2fs: introduce f2fs_journal struct to wrap journal info
Introduce a new structure f2fs_journal to wrap journal info in struct
f2fs_summary_block for readability.
struct f2fs_journal {
union {
__le16 n_nats;
__le16 n_sits;
};
union {
struct nat_journal nat_j;
struct sit_journal sit_j;
struct f2fs_extra_info info;
};
} __packed;
struct f2fs_summary_block {
struct f2fs_summary entries[ENTRIES_IN_SUM];
struct f2fs_journal journal;
struct summary_footer footer;
} __packed;
Signed-off-by: Chao Yu <chao2.yu@samsung.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
2016-02-22 21:39:53 -08:00
..
2016-02-03 01:09:52 +01:00
2016-02-20 09:22:11 -08:00
2016-01-22 11:58:43 -08:00
2016-02-19 13:24:03 +10:00
2016-02-02 15:49:29 +01:00
2016-02-22 21:39:53 -08:00
2016-02-04 09:13:46 -02:00
2016-02-18 11:35:51 -05:00
2016-01-19 15:35:01 -05:00
2016-01-23 18:45:06 -08:00
2016-01-20 18:42:30 -08:00
2016-02-03 14:51:28 +01:00
2016-02-10 23:08:55 -08:00
2016-02-22 16:07:23 -08:00
2016-02-01 15:21:20 -08:00
2016-01-21 18:19:38 -08:00