USB: Increase debug chunk size from 64 to 128 bytes.
The queue head structure in EHCI is bigger than the previous debug chunk size. Multiple allocations therefore overwrote eachother.
This commit is contained in:
@@ -69,7 +69,7 @@ PhysicalMemoryAllocator::PhysicalMemoryAllocator(const char *name,
|
||||
size_t roundedSize = biggestSize * minCountPerBlock;
|
||||
#ifdef HAIKU_TARGET_PLATFORM_HAIKU
|
||||
fDebugBase = roundedSize;
|
||||
fDebugChunkSize = 64;
|
||||
fDebugChunkSize = 128;
|
||||
fDebugUseMap = 0;
|
||||
roundedSize += sizeof(fDebugUseMap) * 8 * fDebugChunkSize;
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user