diff options
| author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-12-18 17:40:49 +0100 | 
|---|---|---|
| committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-12-18 17:40:49 +0100 | 
| commit | 19b98cf450220b742987e7f0599ae284e93f8e54 (patch) | |
| tree | 8845d9bae7f99920dd01ba7e7c52ee4baecf02d9 /include | |
| parent | 5dc3ab23d0552dc9460152f8a9089f25c8572d90 (diff) | |
Add an explicit link count to the fstree nodes
Gets initialized to 2 for directories, 1 for all other types. The count
of the parent node is automatically incremented.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include')
| -rw-r--r-- | include/fstree.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/include/fstree.h b/include/fstree.h index 1ac3f8b..d4839a2 100644 --- a/include/fstree.h +++ b/include/fstree.h @@ -59,7 +59,7 @@ struct tree_node_t {  	sqfs_u32 inode_num;  	sqfs_u32 mod_time;  	sqfs_u16 mode; -	sqfs_u16 pad0; +	sqfs_u16 link_count;  	/* SquashFS inode refernce number. 32 bit offset of the meta data  	   block start (relative to inode table start), shifted left by 16 | 
