We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nlink
A count with the number of hard links (nlink) is not implemented. This causes the stat information to be incomplete.
stat
JFFS does not store the number of hard links (nlink) on disk; rather, it is calculated when the filesystem is scanned.
Count the number of hard links when scanning the filesystem, and cache it.
Directories start with two, and have one additional link for each subdirectory.
Update stat information for JFFS in dissect.target.
dissect.target
For reference, see:
https://github.com/torvalds/linux/blob/6485cf5ea253d40d507cd71253c9568c5470cd27/fs/jffs2/fs.c#L303
https://github.com/torvalds/linux/blob/6485cf5ea253d40d507cd71253c9568c5470cd27/fs/jffs2/build.c#L99
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A count with the number of hard links (
nlink
) is not implemented. This causes thestat
information to be incomplete.JFFS does not store the number of hard links (
nlink
) on disk; rather, it is calculated when the filesystem is scanned.Count the number of hard links when scanning the filesystem, and cache it.
Directories start with two, and have one additional link for each subdirectory.
Update stat information for JFFS in
dissect.target
.For reference, see:
https://github.com/torvalds/linux/blob/6485cf5ea253d40d507cd71253c9568c5470cd27/fs/jffs2/fs.c#L303
https://github.com/torvalds/linux/blob/6485cf5ea253d40d507cd71253c9568c5470cd27/fs/jffs2/build.c#L99
The text was updated successfully, but these errors were encountered: