It's a simplified LRU(least recently used) algorithm.The LRU algorithm has two dimensions including times used and periods used.It seems to be an ordered timely list therefore when the data page from the list used completely it will be put into the head of the list so that the tail of the list contains always the oldest data pages.