-
-
Notifications
You must be signed in to change notification settings - Fork 166
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
helpers: Add AlignedBuffer #1600
base: main
Are you sure you want to change the base?
Conversation
As mentioned in #1595 (comment), let's move to the |
c758cb4
to
b9a4b1a
Compare
9263616
to
bffd748
Compare
bffd748
to
2bbae8a
Compare
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.
Thanks for your many contributions and your patience! I left a few remarks.
If you resolve them, we are good to go
2bbae8a
to
c37c461
Compare
AlignedBuffer is a helper class that manages the livetime of a memory region, allocated using a certain alignment. Like Box, it handles deallocation when the object isn't used anymore.
c37c461
to
812a105
Compare
#[must_use] | ||
pub fn from_layout(layout: Layout) -> Self { | ||
let ptr = unsafe { alloc(layout) }; | ||
let ptr = NonNull::new(ptr).expect("Allocation failed"); |
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.
I'm not sure if it is nice to just panic instead of report an error. Perhaps we need a
enum AlignedBufferError {
Layout(LayoutError),
OutOfMemory,
}
error type that is also returned by the constructors.
I'd like to hear @nicholasbishop opinion on that
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.
I don't have a very strong opinion either way. Rust does tend to just panic on allocation failures in std
, although they later added things like https://doc.rust-lang.org/std/vec/struct.Vec.html#method.try_reserve to avoid panic. I think allocation failing is theoretically more likely in UEFI than in a hosted environment, since there's (presumably) no overcommit in a UEFI environment. However, in practice an allocation failure is very unlikely so perhaps it's fine to just panic.
With that background, my opinion is: let's keep these functions panicking, and we can easily add non-panicking constructors in the future without breaking compatibility.
Please add a # Panics
section in the docstrings of these two constructors so that it's clear for callers what the behavior is.
AlignedBuffer is a helper class that manages the livetime of a memory region, allocated using a certain alignment. Like Box, it handles deallocation when the object isn't used anymore.
Checklist