voidfs/README

22 lines
1.1 KiB
Plaintext
Raw Normal View History

2024-10-29 13:01:19 +07:00
# Void Filesystem
Just a dummy filesystem for learning.
## Virtual Filesystem (VFS)
Linux VFS allows us to write customize filesystem. The filesystem must be able to mount, other operations such as file read/write or folder creation/deletion can be customized.
A filesystem can be virtual, without a backed-up device. This is the case for, I guess, network file descriptors. For filesystem with a backed-up device, usually a block device, the underlying block device can be accessed by sb_bread to read a block.
Internally, a filesystem must provide a superblock, that will be used as a pointer to read files.
When a file is read, the inode of the file entry can be accessed. If we also keep the internal data of the file in `inode->i_private`, we can fetch that to read the file system through `sb_read(inode->sb)`.
## References
[simplefs](https://github.com/sysprog21/simplefs)
[Linux Kernel Labs - File system drivers](https://linux-kernel-labs.github.io/refs/heads/master/labs/filesystems_part1.html)
[Linux Kernel Documentation](https://docs.kernel.org/filesystems/vfs.html)