Added P8-read-fs #6
Closed
Amber-Agarwal wants to merge 2 commits into
Closed
Conversation
Owner
|
This is superceded by this PR: #18 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
IMPORTANT:- Note that in the implementation I have committed I have taken the MKFS from the C directory only so my makefile assumes MKFS to be already present in a specified folder. This was done as I didn't have the code for MKFS in rust. Once that code is added we can change the mkfs dependency in the Makefile.
This PR implements the filesystem read path for p8 (read-fs) in the Rust kernel.
The kernel now reads inode metadata and file contents from
fs.imgusing inode cache + buffer cache flow, equivalent to the C reference behavior.Functionality Added
src/fs.rs:readsb(dev, sb)to read superblock from diskiinit(dev)to initialize FS state using superblockiget(dev, inum)to fetch inodes from in-memory inode cache (with ref counting)iread(ip)to load inode fields from on-diskdinodestati(ip, st)to expose inode metadatareadi(ip, dst, off, n)to read file/directory data block-by-blockbmap(ip, bn)to map logical block index to disk block (direct + single indirect)ROOTINO,NDIRECT,NINDIRECT,DIRSIZ, etc.iinit(ROOTDEV)beforewelcome()welcome()to use FS APIs:iget + iread.,..,welcome.txt)welcome.txtinode, print stats, and print file content viareadifs.imgis now generated withmkfs(real xv6 filesystem layout)xv6.imgas disk0 andfs.imgas disk1)On
make qemu, kernel now:xv6.imgfs.imgwelcome.txtmetadata and contentValidation
make kernelmake xv6.img fs.imgmake qemuwelcome.txtstats and contents