8,430 views
1 votes
1 votes
Consider a paging system with the page table stored in memory. If a memory reference takes $200$ nanoseconds, how long does a paged memory reference take? If we add a Translation Lookaside Buffer (TLB) and $75$ percent of all page-table references are TLB hits, what will then be the effective memory reference time? Assume that finding a page-table entry in the TLB takes $20$ nanoseconds, if the entry is present.

1 Answer

0 votes
0 votes

Effective memory access time would be --

EMAT = 0.75*(20 + 200) + 0.25*(20 + 200 + 200) = 270 ns

Related questions

1 votes
1 votes
1 answer
1
go_editor asked Sep 20, 2018
1,634 views
An operating system contains three resource classes. The number of resource units in these classes are $7, 7\ \text{and} \ 10$ respectively. The current resource allocati...