Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1287478 > unrolled thread

isolate_lru_page on !head pages

Started byMichal Hocko <mhocko@kernel.org>
First post2015-12-09 14:10 +0100
Last post2015-12-09 14:10 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  isolate_lru_page on !head pages Michal Hocko <mhocko@kernel.org> - 2015-12-09 14:10 +0100

#1287478 — isolate_lru_page on !head pages

FromMichal Hocko <mhocko@kernel.org>
Date2015-12-09 14:10 +0100
Subjectisolate_lru_page on !head pages
Message-ID<qDMFk-nF-7@gated-at.bofh.it>
Hi Kirill,
while looking at the issue reported by Minchan [1] I have noticed that
there is nothing to prevent from "isolating" a tail page from LRU because
isolate_lru_page checks PageLRU which is
PAGEFLAG(LRU, lru, PF_HEAD)
so it is checked on the head page rather than the given page directly
but the rest of the operation is done on the given (tail) page.

This is really subtle because this expects that every caller of this
function checks for the tail page otherwise we would clobber statistics
and who knows what else (I haven't checked that in detail) as the page
cannot be on the LRU list and the operation makes sense only on the head
page.

Would it make more sense to make PageLRU PF_ANY? That would return
false for PageLRU on any tail page and so it would be ignored by
isolate_lru_page.

I haven't checked other flags but there might be a similar situation. I
am wondering whether it is really a good idea to perform a flag check on
a different page then the operation which depends on the result of the
test in general. It sounds like a maintenance horror to me.

[1] http://lkml.kernel.org/r/20151201133455.GB27574@bbox
-- 
Michal Hocko
SUSE Labs
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web