Internal Fragmentation occurs when fixed‐size memory blocks allocated to processes contain unused space within those blocks. Even though the block is in use, part of it remains wasted because the process doesn’t fill it completely.


How It Happens

  1. Memory is divided into fixed‐size partitions (in MFT) or fixed‐size pages (in paging).
  2. Each process or page request is rounded up to the next whole block.
  3. The last block granted to a process often isn’t filled completely.
  4. The unused portion of that block is called internal fragmentation.

Example

A system uses 4 KB pages. A process needs 18 KB of memory.

Page # Used (KB) Page Size (KB) Internal Frag (KB)
0 4 4 0
1 4 4 0
2 4 4 0
3 4 4 0
4 2 4 2
Total 18 20 2

Mitigation Techniques


Key Point: Internal fragmentation is the waste inside allocated blocks due to fixed‐size allocation units—memory is “in use” but some of it sits idle.