docs(cuda.core): correct the 1.1.1 program cache permissions note - #2718
Open
fedonman wants to merge 1 commit into
Open
docs(cuda.core): correct the 1.1.1 program cache permissions note#2718fedonman wants to merge 1 commit into
fedonman wants to merge 1 commit into
Conversation
The note described the first draft of NVIDIA#2399. Review narrowed the change to the tmp/ staging directory, so only tmp/ is created 0o700 and the post-mkdir chmod was dropped. The cache root and entries/ inherit the umask and a pre-existing directory is left as-is, so nothing is re-asserted on each use. Entry files are 0o600 via mkstemp and an atomic replace, so the note's read-protection claim is kept. Closes NVIDIA#2717
Contributor
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.
Corrects the
cuda.core1.1.1 release note for the on-disk program cache: only thetmp/staging directory is created0o700, the cache root andentries/inherit the umask, and no permissions are re-asserted. Entry files are0o600, so the note keeps its read-protection claim.Docs-only change, no new reStructuredText warnings.
Closes #2717