forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 475
vfs abstractions and tarfs #1037
New issue
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
Draft
wedsonaf
wants to merge
29
commits into
Rust-for-Linux:rust-next
Choose a base branch
from
wedsonaf:vfs
base: rust-next
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
a3fe8d8
xattr: make the xattr array itself const
wedsonaf 484ec70
rust: introduce `InPlaceModule`
wedsonaf da1a2b6
samples: rust: add in-place initialisation sample
wedsonaf 883e433
rust: add the `container_of` macro
wedsonaf 14513c0
rust: init: introduce `Opaque::try_ffi_init`
wedsonaf c7d0fb2
rust: time: introduce `time` module
wedsonaf ca4a93c
rust: types: add little-endian type
wedsonaf a44bdcc
rust: types: introduce `FromBytes` trait
wedsonaf caf9b29
rust: mem_cache: introduce `MemCache`
wedsonaf b0bc357
kbuild: rust: allow modules to allocate memory
wedsonaf 528babd
rust: fs: add registration/unregistration of file systems
wedsonaf e909f43
rust: fs: introduce the `module_fs` macro
wedsonaf ad07f4b
samples: rust: add initial ro file system sample
wedsonaf 626056a
rust: fs: introduce `FileSystem::super_params`
wedsonaf a448dc5
rust: fs: introduce `INode<T>`
wedsonaf b26f77a
rust: fs: introduce `FileSystem::init_root`
wedsonaf ac0f637
rust: fs: introduce `FileSystem::read_dir`
wedsonaf 14b32d0
rust: fs: introduce `FileSystem::lookup`
wedsonaf 5e601b9
rust: folio: introduce basic support for folios
wedsonaf c02d2b9
rust: fs: introduce `FileSystem::read_folio`
wedsonaf ce0acb6
rust: fs: introduce `FileSystem::read_xattr`
wedsonaf 3f94966
rust: fs: introduce `FileSystem::statfs`
wedsonaf 6032d93
rust: fs: introduce more inode types
wedsonaf 1cf6e5e
rust: fs: add per-superblock data
wedsonaf 516d0e4
rust: fs: add basic support for fs buffer heads
wedsonaf 0605dba
rust: fs: allow file systems backed by a block device
wedsonaf b40e37b
rust: fs: allow per-inode data
wedsonaf 80fda66
rust: fs: export file type from mode constants
wedsonaf 7189177
tarfs: introduce tar fs
wedsonaf File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
rust: introduce
InPlaceModule
This allows modules to be initialised in-place in pinned memory, which enables the usage of pinned types (e.g., mutexes, spinlocks, driver registrations, etc.) in modules without any extra allocations. Drivers that don't need this may continue to implement `Module` without any changes. Signed-off-by: Wedson Almeida Filho <walmeida@microsoft.com>
- Loading branch information
commit 484ec70025ff9887d9ca228ec631264039cee355
There are no files selected for viewing
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
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.