diff options
author | Zhihao Cheng <chengzhihao1@huawei.com> | 2024-11-11 17:01:16 +0800 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2024-11-11 10:32:46 +0100 |
commit | 8ad286c3fc0662ea8a74b9e60fe27c3fe65aa9d2 (patch) | |
tree | 6c66e16f51da39381e33595a861878113f2507bf /ubifs-utils/fsck.ubifs/fsck.ubifs.h | |
parent | 2c7404fc8fd6c12bb8179147ff47c864819f4b35 (diff) |
fsck.ubifs: rebuild_fs: Create new root dir if there are no scanned files
This is a preparation for building TNC, there must at least one file
in filesystem, if not, just create new root dir.
Signed-off-by: Zhihao Cheng <chengzhihao1@huawei.com>
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'ubifs-utils/fsck.ubifs/fsck.ubifs.h')
-rw-r--r-- | ubifs-utils/fsck.ubifs/fsck.ubifs.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ubifs-utils/fsck.ubifs/fsck.ubifs.h b/ubifs-utils/fsck.ubifs/fsck.ubifs.h index cb7b400..fb72d8a 100644 --- a/ubifs-utils/fsck.ubifs/fsck.ubifs.h +++ b/ubifs-utils/fsck.ubifs/fsck.ubifs.h @@ -183,11 +183,17 @@ struct scanned_file { * @used_lebs: a bitmap used for recording used lebs * @lpts: lprops table * @scanned_files: tree of all scanned files + * @write_buf: write buffer for LEB @head_lnum + * @head_lnum: current writing LEB number + * @head_offs: current writing position in LEB @head_lnum */ struct ubifs_rebuild_info { unsigned long *used_lebs; struct ubifs_lprops *lpts; struct rb_root scanned_files; + void *write_buf; + int head_lnum; + int head_offs; }; /** |