This is a secondary account that sees the most usage. My first account is listed below. The main will have a list of all the accounts that I use.

henfredemars@lemmy.world

Garbage: Purple quickly jumps candle over whispering galaxy banana chair flute rocks.

  • 42 Posts
  • 1.71K Comments
Joined 2 years ago
cake
Cake day: July 4th, 2023

help-circle










  • Page size involves a fundamental trade off in computer architecture. A system with the most logically minimal page size (1-byte pages) would have untenably large page tables comparable to the size of all system memory, making an MMU implementation impractical. For huge page sizes (=system memory, 1 page for the entire computer), the MMU is useless because it only recognizes permissions and virtual addresses for just a single unit, even if it would be trivially easy to implement. In between, we have practical and useful MMUs that offer some granularity in addressing and permissions for some trade off of complexity and memory to store the page tables.

    Addressable memory has grown so much over the decades. It makes sense to move the trade off point in favor of not storing so much metadata.