diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-06-10 21:20:00 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-06-10 21:24:46 +0200 |
commit | 395e301d554a233dd00a3c7abff4880ad7e681a1 (patch) | |
tree | 5c5ea9186d0181b6751c39c4670f7a3122309098 /mkfs/mkfs.h | |
parent | 856e8ae89a3ba86526b71bc811573c7e10d161d4 (diff) |
Generate a flat inode table from the fstree ahead of time
Instead of allocating inode numbers as we go, generate and populat an
inode table from the fstree ahead of time. This makes processing nodes
a little bit simpler and we will need that table anyway for NFS export
support later on.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'mkfs/mkfs.h')
-rw-r--r-- | mkfs/mkfs.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mkfs/mkfs.h b/mkfs/mkfs.h index 15d349e..e3e3c5d 100644 --- a/mkfs/mkfs.h +++ b/mkfs/mkfs.h @@ -65,7 +65,6 @@ typedef struct { size_t frag_offset; id_table_t idtbl; - size_t inode_counter; compressor_t *cmp; } sqfs_info_t; |