-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Work/dp catalog review updates #3191
Conversation
@LeStarch The word that the spell check is complaining about is in the |
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.
One more thing I did not see fixed from the original PR:
In configure, the partitioning of memory into three pieces uses reinterpret cast on the address of an out-of-bounds array element, and it may not respect alignment requirements. This kind of code should do array access on the underlying byte buffer (so it's in bounds), it should use placement new to create the arrays, and it should respect alignment requirements.
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.
Approving as future work will be spun off into new issues.
Change Description
Minor changes to
Svc::DpCatalog
to address review items.Rationale
These fixes were requested prior to the next F Prime review
Testing/Review Recommendations
None, other than verifying unit tests work. Unit tests passed as of this PR,
Future Work
There will be continuing work on
Svc::DpManager