Internal Fragmentation
Everything on SkillVeris tagged Internal Fragmentation — collected across the glossary, study notes, blog, and cheat sheets.
4 resources across 1 library
Interview Questions(4)
What is the Buddy System for Memory Allocation?
The buddy system is a kernel memory allocator that manages physical memory in power-of-two-sized blocks, splitting a large free block into two equal buddies to…
Internal vs External Fragmentation
Internal fragmentation is wasted space inside an allocated block because it is larger than what was requested, while external fragmentation is wasted space bet…
What are the Tradeoffs of Page Size?
Choosing a larger page size reduces page table size and TLB pressure and improves transfer efficiency for large sequential reads, while choosing a smaller page…
What Causes External Fragmentation and How Is It Solved?
External fragmentation happens when free memory becomes scattered into many small, non-contiguous holes so that even though total free space is sufficient, no…