Add a fuser mount option to use FUSE_DEV_IOC_CLONE.#1587
Merged
adpeace merged 1 commit intoawslabs:fuser/forkfrom Sep 10, 2025
Merged
Add a fuser mount option to use FUSE_DEV_IOC_CLONE.#1587adpeace merged 1 commit intoawslabs:fuser/forkfrom
adpeace merged 1 commit intoawslabs:fuser/forkfrom
Conversation
Contributor
Author
|
this built locally (and I tested the option worked correctly), need to look at what I did wrong, converted back to draft for now. |
passaro
requested changes
Aug 29, 2025
a63d1ac to
7e6dee0
Compare
passaro
reviewed
Sep 4, 2025
Contributor
passaro
left a comment
There was a problem hiding this comment.
Looks good. Just one nitpick.
passaro
approved these changes
Sep 5, 2025
passaro
reviewed
Sep 6, 2025
Contributor
passaro
left a comment
There was a problem hiding this comment.
This requires a version change (0.1.1) before it can be picked up on main.
This mimics functionality from libfuse. When enabled, it will create a new file descriptor for each fuse thread by opening /dev/fuse again and using the FUSE_DEV_IOC_CLONE ioctl to associate the file handle with the original filesystem. Signed-off-by: Andrew Peace <[email protected]>
passaro
approved these changes
Sep 9, 2025
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.
This mimics functionality from libfuse. When enabled, it will create a new file descriptor for each fuse thread by opening /dev/fuse again and using the FUSE_DEV_IOC_CLONE ioctl to associate the file handle with the original filesystem. The benefit of enabling this is that some of the processing queues in the kernel data structures are no longer shared, which theoretically reduces lock contention.
Does this change impact existing behavior?
No.
Does this change need a changelog entry? Does it require a version change?
No.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and I agree to the terms of the Developer Certificate of Origin (DCO).