Re: [PATCH v5 2/6] mm/page_idle: Add support for handling swapped PG_Idle pages
From: Michal Hocko <mhocko@kernel.org>
Date: 2019-08-14 18:37:06
Also in:
linux-doc, linux-fsdevel, linux-mm, lkml
On Wed 14-08-19 12:32:03, Joel Fernandes wrote:
On Wed, Aug 14, 2019 at 10:05:31AM +0200, Michal Hocko wrote:quoted
On Tue 13-08-19 11:36:59, Joel Fernandes wrote:quoted
On Tue, Aug 13, 2019 at 05:04:50PM +0200, Michal Hocko wrote:quoted
On Wed 07-08-19 13:15:55, Joel Fernandes (Google) wrote:quoted
Idle page tracking currently does not work well in the following scenario: 1. mark page-A idle which was present at that time. 2. run workload 3. page-A is not touched by workload 4. *sudden* memory pressure happen so finally page A is finally swapped out 5. now see the page A - it appears as if it was accessed (pte unmapped so idle bit not set in output) - but it's incorrect. To fix this, we store the idle information into a new idle bit of the swap PTE during swapping of anonymous pages. Also in the future, madvise extensions will allow a system process manager (like Android's ActivityManager) to swap pages out of a process that it knows will be cold. To an external process like a heap profiler that is doing idle tracking on another process, this procedure will interfere with the idle page tracking similar to the above steps.This could be solved by checking the !present/swapped out pages right? Whoever decided to put the page out to the swap just made it idle effectively. So the monitor can make some educated guess for tracking. If that is fundamentally not possible then please describe why.But the monitoring process (profiler) does not have control over the 'whoever made it effectively idle' process.Why does that matter? Whether it is a global/memcg reclaim or somebody calling MADV_PAGEOUT or whatever it is a decision to make the page not hot. Sure you could argue that a missing idle bit on swap entries might mean that the swap out decision was pre-mature/sub-optimal/wrong but is this the aim of the interface?quoted
As you said it will be a guess, it will not be accurate.Yes and the point I am trying to make is that having some space and not giving a guarantee sounds like a safer option for this interface becauseI do see your point of view, but jJust because a future (and possibly not going to happen) usecase which you mentioned as pte reclaim, makes you feel that userspace may be subject to inaccuracies anyway, doesn't mean we should make everything inaccurate.. We already know idle page tracking is not completely accurate. But that doesn't mean we miss out on the opportunity to make the "non pte-reclaim" usecase inaccurate as well.
Just keep in mind that you will add more burden to future features because they would have to somehow overcome this user visible behavior and we will get to the usual question - Is this going to break something that relies on the idle bit being stable?
IMO, we should do our best for today, and not hypothesize. How likely is pte reclaim and is there a thread to describe that direction?
Not that I am aware of now but with large NVDIMM mapped files I can see that this will get more and more interesting. -- Michal Hocko SUSE Labs