Skip to content
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

mm/pagebox: add dynamically-sized slice support #420

Merged
merged 3 commits into from
Aug 16, 2024

Conversation

00xc
Copy link
Member

@00xc 00xc commented Jul 23, 2024

Add support for allocating dynamically-sized slices of values using the page allocator. This essentially works like a regular Vec, except the slice does not support resizing once created.

This is useful for the use case we have in the valid bitmap. Thus, replace the low-level page allocation calls in that code with PageBox uses.

@00xc
Copy link
Member Author

00xc commented Jul 24, 2024

Once this is merged we can make the raw page allocation functions in mm/alloc.rs private (or directly remove them in some cases).

@00xc 00xc mentioned this pull request Aug 12, 2024
Copy link
Contributor

@Freax13 Freax13 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

kernel/src/mm/validate.rs Outdated Show resolved Hide resolved
kernel/src/mm/validate.rs Outdated Show resolved Hide resolved
kernel/src/mm/validate.rs Outdated Show resolved Hide resolved
At the moment, we initialize a global variable with a structure
(`ValidBitmap`) that holds a raw pointer to a bitmap. To signal that
the bitmap has not been initialized, we store a NULL pointer and
check on every access. Instead of doing this, simply store an
`Option<ValidBitmap>` in the global variable. If the bitmap has not
been initialized, the `Option` will be `None`, which we are forced to
check, avoiding potential NULL pointer dereferences and simplyfing
some of the methods of `ValidBitmap`.

Signed-off-by: Carlos López <carlos.lopezr4096@gmail.com>
Add support for allocating dynamically-sized slices of values using
the page allocator. This essentially works like a regular Vec, except
the slice does not support resizing once created. While we are at it,
add a corresponding test.

Signed-off-by: Carlos López <carlos.lopezr4096@gmail.com>
@00xc
Copy link
Member Author

00xc commented Aug 16, 2024

Applied Tom's suggestions and rebased on main

kernel/src/mm/validate.rs Outdated Show resolved Hide resolved
Now that PageBox supports dinamically sized slices, use the
abstraction to allocate the bitmap.

Signed-off-by: Carlos López <carlos.lopezr4096@gmail.com>
@joergroedel joergroedel merged commit 35c47b3 into coconut-svsm:main Aug 16, 2024
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants