lkml.org 
[lkml]   [2019]   [Aug]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [v2 PATCH -mm] mm: account deferred split THPs into MemAvailable
On Tue 27-08-19 14:02:10, Kirill A. Shutemov wrote:
> On Tue, Aug 27, 2019 at 08:01:39AM +0200, Michal Hocko wrote:
> > On Mon 26-08-19 16:15:38, Kirill A. Shutemov wrote:
> > > On Mon, Aug 26, 2019 at 09:40:35AM +0200, Michal Hocko wrote:
> > > > On Thu 22-08-19 18:29:34, Kirill A. Shutemov wrote:
> > > > > On Thu, Aug 22, 2019 at 02:56:56PM +0200, Vlastimil Babka wrote:
> > > > > > On 8/22/19 10:04 AM, Michal Hocko wrote:
> > > > > > > On Thu 22-08-19 01:55:25, Yang Shi wrote:
> > > > > > >> Available memory is one of the most important metrics for memory
> > > > > > >> pressure.
> > > > > > >
> > > > > > > I would disagree with this statement. It is a rough estimate that tells
> > > > > > > how much memory you can allocate before going into a more expensive
> > > > > > > reclaim (mostly swapping). Allocating that amount still might result in
> > > > > > > direct reclaim induced stalls. I do realize that this is simple metric
> > > > > > > that is attractive to use and works in many cases though.
> > > > > > >
> > > > > > >> Currently, the deferred split THPs are not accounted into
> > > > > > >> available memory, but they are reclaimable actually, like reclaimable
> > > > > > >> slabs.
> > > > > > >>
> > > > > > >> And, they seems very common with the common workloads when THP is
> > > > > > >> enabled. A simple run with MariaDB test of mmtest with THP enabled as
> > > > > > >> always shows it could generate over fifteen thousand deferred split THPs
> > > > > > >> (accumulated around 30G in one hour run, 75% of 40G memory for my VM).
> > > > > > >> It looks worth accounting in MemAvailable.
> > > > > > >
> > > > > > > OK, this makes sense. But your above numbers are really worrying.
> > > > > > > Accumulating such a large amount of pages that are likely not going to
> > > > > > > be used is really bad. They are essentially blocking any higher order
> > > > > > > allocations and also push the system towards more memory pressure.
> > > > > > >
> > > > > > > IIUC deferred splitting is mostly a workaround for nasty locking issues
> > > > > > > during splitting, right? This is not really an optimization to cache
> > > > > > > THPs for reuse or something like that. What is the reason this is not
> > > > > > > done from a worker context? At least THPs which would be freed
> > > > > > > completely sound like a good candidate for kworker tear down, no?
> > > > > >
> > > > > > Agreed that it's a good question. For Kirill :) Maybe with kworker approach we
> > > > > > also wouldn't need the cgroup awareness?
> > > > >
> > > > > I don't remember a particular locking issue, but I cannot say there's
> > > > > none :P
> > > > >
> > > > > It's artifact from decoupling PMD split from compound page split: the same
> > > > > page can be mapped multiple times with combination of PMDs and PTEs. Split
> > > > > of one PMD doesn't need to trigger split of all PMDs and underlying
> > > > > compound page.
> > > > >
> > > > > Other consideration is the fact that page split can fail and we need to
> > > > > have fallback for this case.
> > > > >
> > > > > Also in most cases THP split would be just waste of time if we would do
> > > > > them at the spot. If you don't have memory pressure it's better to wait
> > > > > until process termination: less pages on LRU is still beneficial.
> > > >
> > > > This might be true but the reality shows that a lot of THPs might be
> > > > waiting for the memory pressure that is essentially freeable on the
> > > > spot. So I am not really convinced that "less pages on LRUs" is really a
> > > > plausible justification. Can we free at least those THPs which are
> > > > unmapped completely without any pte mappings?
> > >
> > > Unmapped completely pages will be freed with current code. Deferred split
> > > only applies to partly mapped THPs: at least on 4k of the THP is still
> > > mapped somewhere.
> >
> > Hmm, I am probably misreading the code but at least current Linus' tree
> > reads page_remove_rmap -> [page_remove_anon_compound_rmap ->\ deferred_split_huge_page even
> > for fully mapped THP.
>
> Well, you read correctly, but it was not intended. I screwed it up at some
> point.
>
> See the patch below. It should make it work as intened.

OK, this would be indeed much better indeed. I was really under
impression that the deferred splitting is required due to locking.

Anyway this should take care of the most common usecase. If we can make
the odd cases of partially mapped THPs be handled deferred&earlier than
maybe do not really need the whole memcg deferred shrinkers and other
complications. So let's see.
--
Michal Hocko
SUSE Labs

\
 
 \ /
  Last update: 2019-08-27 13:48    [W:0.604 / U:1.480 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site