-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
feat(fuse): Expose MFS as FUSE mount point #10781
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
Merged
Merged
Changes from 12 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
f5989b9
Add MFS command line options, extend existing mount functions for MFS…
gsergey418 47aa0f0
Directory listing and file stat.
gsergey418 6fee6d5
Add a read-only MFS view.
gsergey418 5e04696
Add mkdir and interface checks.
gsergey418 cda7cf7
Add remove and rename functionality.
gsergey418 5b9deba
Implement all required write interfaces.
gsergey418 6e1a455
Adjust mount functions for other architechtures.
gsergey418 d1b4cc1
Merge branch 'master' into feat/10710-mfs-fuse-mount
gsergey418 759021b
Merge branch 'master' into feat/10710-mfs-fuse-mount
gsergey418 d4cdb93
Write a basic read/write test.
gsergey418 8bba26e
Write more basic tests, add a mutex to the file object, fix modtime.
gsergey418 d7342aa
Add a concurrency test, remove mutexes from file and directory struct…
gsergey418 c64cfff
Refactor naming(mfdir -> mfsdir) and add documentation.
gsergey418 7e57b85
Add CID retrieval through ipfs_cid xattr.
gsergey418 3a1bf22
Merge branch 'master' into feat/10710-mfs-fuse-mount
guillaumemichel 6424872
Add docs, add xattr listing, fix bugs for mv and stat, refactor.
gsergey418 c579d85
Add MFS command line options, extend existing mount functions for MFS…
gsergey418 63852d9
docs phrasing
guillaumemichel 5a0cf17
Merge master into feat/10710-mfs-fuse-mount
lidel a24fa2f
docs: Mounts.MFS
lidel a830433
docs: warn about lazy-loaded DAGs
lidel 7f17080
test: TEST_FUSE=1 ./t0030-mount.sh -v
lidel 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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -58,6 +58,7 @@ | |
| Mounts: Mounts{ | ||
| IPFS: "/ipfs", | ||
| IPNS: "/ipns", | ||
| MFS: "/mfs", | ||
| }, | ||
|
|
||
| Ipns: Ipns{ | ||
|
|
||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,5 +4,6 @@ package config | |
| type Mounts struct { | ||
| IPFS string | ||
| IPNS string | ||
| MFS string | ||
| FuseAllowOther bool | ||
| } | ||
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
Oops, something went wrong.
Oops, something went wrong.
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.