Re: [patch v2] mm, thp: always specify ineligible vmas as nh in smaps

From: David Rientjes
Date: Tue Sep 25 2018 - 17:45:24 EST


On Tue, 25 Sep 2018, Michal Hocko wrote:

> > This is used to identify heap mappings that should be able to fault thp
> > but do not, and they normally point to a low-on-memory or fragmentation
> > issue. After commit 1860033237d4, our users of PR_SET_THP_DISABLE no
> > longer show "nh" for their heap mappings so they get reported as having a
> > low thp ratio when in reality it is disabled.
>
> I am still not sure I understand the issue completely. How are PR_SET_THP_DISABLE
> users any different from the global THP disabled case? Is this only
> about the scope? E.g the one who checks for the state cannot check the
> PR_SET_THP_DISABLE state? Besides that what are consequences of the
> low ratio? Is this an example of somebody using the prctl and still
> complaining or an external observer trying to do something useful which
> ends up doing contrary?
>

Yes, that is how I found out about this. The system-wide policy can be
determined from /sys/kernel/mm/transparent_hugepage/enabled. If it is
"always" and heap mappings are not being backed by hugepages and lack the
"nh" flag, it was considered as a likely fragmentation issue before commit
1860033237d4. After commit 1860033237d4, the heap mapping for
PR_SET_THP_DISABLE users was not showing it actually is prevented from
faulting thp because of policy, not because of fragmentation.

> > It is also used in
> > automated testing to ensure that vmas get disabled for thp appropriately
> > and we used "nh" since that is how PR_SET_THP_DISABLE previously enforced
> > this, and those tests now break.
>
> This sounds like a bit of an abuse to me. It shows how an internal
> implementation detail leaks out to the userspace which is something we
> should try to avoid.
>

Well, it's already how this has worked for years before commit
1860033237d4 broke it. Changing the implementation in the kernel is fine
as long as you don't break userspace who relies on what is exported to it
and is the only way to determine if MADV_NOHUGEPAGE is preventing it from
being backed by hugepages.

> > I'll reword this to explicitly state that "hg" and "nh" mappings either
> > allow or disallow thp backing.
>
> How are you going to distinguish a regular THP-able mapping then? I am
> still not sure how this is supposed to work. Could you be more specific.

You look for "[heap]" in smaps to determine where the heap mapping is.