We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59cd783 commit 8b96480Copy full SHA for 8b96480
src/aero_kernel/src/mem/vmalloc.rs
@@ -99,7 +99,6 @@ impl Vmalloc {
99
100
pub(super) fn alloc(&mut self, mut npages: usize) -> Option<VirtAddr> {
101
npages += 1; // allocate a guard page
102
- log::debug!("vmalloc: (npages={npages})");
103
104
let size_bytes = npages * Size4KiB::SIZE as usize;
105
@@ -159,8 +158,6 @@ impl Vmalloc {
159
158
pub(super) fn dealloc(&mut self, addr: VirtAddr, mut npages: usize) {
160
npages += 1; // deallocate the vmalloc guard page
161
162
- log::debug!("vmdealloc: (npages={npages})");
163
-
164
let size = npages * Size4KiB::SIZE as usize;
165
166
// check if this block can be merged into another block.
0 commit comments