Add test and docs for many encrypted fs#18
Open
mattludwigs wants to merge 1 commit into
Open
Conversation
ead5f1b to
671d0ca
Compare
ee2c08a to
1c71287
Compare
78e6a04 to
d365db9
Compare
d365db9 to
af176ed
Compare
af176ed to
6055e53
Compare
Member
|
I had forgotten about this PR, but if anyone comes back to it, the loop device parts need to be removed. |
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.
Added a little stub code around to mounting
dm_cryptto feel out what implementation might work like since we don't really have arrays in the language runtime. I am sure that stub will all change and we will have a better solution. I figured implementing a proper array in the runtime will be a fair amount of extra work that we might not really need.Another way I thought this could be implemented it fetching each
dm_cryptitem (until there are no more) and appending that to an array and then for looping that array to do the mounting.I am not sure what the most C way of doing this would be, so I look forward to seeing what the solution is.