0
872views
Explain effect of page size on performance.
1 Answer
0
4views
written 3.0 years ago by |
Page size
Memory is better utilized with smaller pages, however.
If a process is allocated memory starting at location 00000 and continuing until it has as much as it needs, it probably will not end exactly on a page boundary.
Thus, a part of the final page must be allocated (because pages are the units of allocation) but will be unused (creating internal fragmentation).
Assuming independence of process size and page size, we can expect that, on the average, half of the final page of each process will be wasted.
This loss is only 256 bytes for a page of 512 bytes but is 4,096 bytes for a page of 8,192 bytes.
To minimize internal fragmentation, then, we need a small page size.
ADD COMMENT
EDIT
Please log in to add an answer.