void mark_page_accessed(struct page *page)
 {
        page = compound_head(page);
-       if (!PageActive(page) && !PageUnevictable(page) &&
-                       PageReferenced(page)) {
 
+       if (!PageReferenced(page)) {
+               SetPageReferenced(page);
+       } else if (PageUnevictable(page)) {
+               /*
+                * Unevictable pages are on the "LRU_UNEVICTABLE" list. But,
+                * this list is never rotated or maintained, so marking an
+                * evictable page accessed has no effect.
+                */
+       } else if (!PageActive(page)) {
                /*
                 * If the page is on the LRU, queue it for activation via
                 * activate_page_pvecs. Otherwise, assume the page is on a
                ClearPageReferenced(page);
                if (page_is_file_cache(page))
                        workingset_activation(page);
-       } else if (!PageReferenced(page)) {
-               SetPageReferenced(page);
        }
        if (page_is_idle(page))
                clear_page_idle(page);