P10 write fs#7
Closed
Amber-Agarwal wants to merge 3 commits into
Closed
Conversation
Owner
|
merged superceded branch: #20 |
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 write path in the Rust xv6 kernel and updates the boot-time demo to exercise directory/file creation and path lookup with writes.
I have currently implemented the following
Inode and block write support
ballocbzeroiallociupdateireleasebmap(direct + single indirect)writeiMAXFILE,BPBT_DIR,T_FILE,T_DEV)Directory and pathname operations
dirlookupdirlinkskipelemnamexnameinameiparentDIRSIZdirectory entries.Boot demo changes (
welcome)//fooif missing/foo/greet.txtif missing by linking/welcome.txt/foo/greet.txtBehavior after this PR
On first boot:
/foo not found. Creating!/foo/greet.txt not found. Creating!/foo/greet.txtOn later boots:
/foo/greet.txtValidation
make xv6.img fs.imgsucceedsmake qemuboots successfully