mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 20:28:11 +00:00
Kernel: Log purported size of bogus kfree_sized() requests
This commit is contained in:
parent
c6c786c992
commit
9182653a0f
1 changed files with 3 additions and 3 deletions
|
@ -79,7 +79,7 @@ struct KmallocGlobalData {
|
|||
return allocate(size);
|
||||
}
|
||||
|
||||
void deallocate(void* ptr)
|
||||
void deallocate(void* ptr, size_t size)
|
||||
{
|
||||
VERIFY(!expansion_in_progress);
|
||||
|
||||
|
@ -90,7 +90,7 @@ struct KmallocGlobalData {
|
|||
}
|
||||
}
|
||||
|
||||
PANIC("Bogus pointer {:p} passed to kfree()", ptr);
|
||||
PANIC("Bogus pointer passed to kfree_sized({:p}, {})", ptr, size);
|
||||
}
|
||||
|
||||
size_t allocated_bytes() const
|
||||
|
@ -292,7 +292,7 @@ void kfree_sized(void* ptr, size_t size)
|
|||
PerformanceManager::add_kfree_perf_event(*current_thread, 0, (FlatPtr)ptr);
|
||||
}
|
||||
|
||||
g_kmalloc_global->deallocate(ptr);
|
||||
g_kmalloc_global->deallocate(ptr, size);
|
||||
--g_nested_kfree_calls;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue