E.A.T存取時間,是否包含data block/frame(in memory)存取時間?
Assume that the page to replaced is modified 70 percent of the time. What is
the maximum acceptable page-fault rate for an effective access time of no
more than 200 nanoseconds?
Sol:
(Note: 1 millisecond = 1,000,000 nanoseconds = 1e6 nanoseconds)
EAT = (1-p)*(100) + (p)*(100 + (1-.7)*(8msec) + (.7)*(20msec))
= 100 - 100p + 100p + (2.4e6)*p + (14e6)*p
= 100 + (16.4e6)*p
200 = 100 + (16.4e6)*p
p = 100/16.4e6
(1-p)*100: 這100應該是指存取data block(frame)?