-
Notifications
You must be signed in to change notification settings - Fork 200
Report a creation time from the simple example #747
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
+61
−1
Merged
Changes from all commits
Commits
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When
simpleis started with adata_dirwritten by the previous version (including the default/tmp/fuser), the serialized inode records do not contain this new required field.init()immediately callsget_inode(ROOT), andget_inodeunwrapsrmp_serde::from_read, so those existing filesystems panic instead of mounting; please givecreateda migration/default path, such as deriving it from the existing timestamps on old records.Useful? React with 👍 / 👎.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same answer as on #744, where this came up for the
flagsfield and the PR merged as it was.The example's data directory carries no format compatibility guarantee, and this has happened twice before without ceremony: 4c3e859 added
rdevas a plain required field and 5ce9092 addedflags, both mid-struct, both with no#[serde(default)]and no migration.The suggested default would also not work here, for the same reason it would not have there. rmp_serde encodes structs as arrays, so what matters is field position, not field presence.
createdsits sixth of fifteen, betweenlast_metadata_changedandkind, so an old record'skindlands in its slot and fails on the type rather than falling back to a default. Making this survive an upgrade means putting the field last, adding#[serde(default)], and writing down that ordering constraint so the next field addition does not silently undo it.Deriving it from the existing timestamps is a good idea for a filesystem that wants this, and worth doing deliberately if the example should keep its data dir readable across versions - for every field rather than this one, and probably with a version in the superblock it already writes. Not as a side effect of adding a creation time.
Generated by Claude Code