From: Minchan Kim <minchan@kernel.org>
To: Daniel Colascione <dancol@google.com>
Cc: linux-mm@kvack.org, Peter Zijlstra <peterz@infradead.org>
Subject: Re: [PATCH] Synchronize task mm counters on demand
Date: Fri, 23 Feb 2018 11:28:10 +0900 [thread overview]
Message-ID: <20180223022810.GB115990@rodete-desktop-imager.corp.google.com> (raw)
In-Reply-To: <CAKOZuesZPy8rgo_pPy=cUtGcGhLzCq4X46ns7h7ta7ihrJSPWA@mail.gmail.com>
On Thu, Feb 22, 2018 at 06:09:17PM -0800, Daniel Colascione wrote:
> Thanks for taking a look.
>
> On Feb 22, 2018 6:01 PM, "Minchan Kim" <minchan@kernel.org> wrote:
>
> Hi Daniel,
>
> On Wed, Feb 21, 2018 at 06:46:20PM -0800, Daniel Colascione wrote:
> > When SPLIT_RSS_COUNTING is in use (which it is on SMP systems,
> > generally speaking), we buffer certain changes to mm-wide counters
> > through counters local to the current struct task, flushing them to
> > the mm after seeing 64 page faults, as well as on task exit and
> > exec. This scheme can leave a large amount of memory unaccounted-for
> > in process memory counters, especially for processes with many threads
> > (each of which gets 64 "free" faults), and it produces an
> > inconsistency with the same memory counters scanned VMA-by-VMA using
> > smaps. This inconsistency can persist for an arbitrarily long time,
> > since there is no way to force a task to flush its counters to its mm.
> >
> > This patch flushes counters on get_mm_counter. This way, readers
> > always have an up-to-date view of the counters for a particular
> > task. It adds a spinlock-acquire to the add_mm_counter_fast path, but
> > this spinlock should almost always be uncontended.
> >
> > Signed-off-by: Daniel Colascione <dancol@google.com>
> > ---
> > fs/proc/task_mmu.c | 2 +-
> > include/linux/mm.h | 16 ++++++++-
> > include/linux/mm_types_task.h | 13 +++++--
> > kernel/fork.c | 1 +
> > mm/memory.c | 64 ++++++++++++++++++++++-------------
> > 5 files changed, 67 insertions(+), 29 deletions(-)
> >
> > diff --git a/fs/proc/task_mmu.c b/fs/proc/task_mmu.c
> > index ec6d2983a5cb..ac9e86452ca4 100644
> > --- a/fs/proc/task_mmu.c
> > +++ b/fs/proc/task_mmu.c
> > @@ -852,7 +852,7 @@ static int show_smap(struct seq_file *m, void *v, int
> is_pid)
> > mss->private_hugetlb >> 10,
> > mss->swap >> 10,
> > (unsigned long)(mss->swap_pss >> (10 +
> PSS_SHIFT)),
> > - (unsigned long)(mss->pss >> (10 + PSS_SHIFT)));
> > + (unsigned long)(mss->pss_locked >> (10 +
> PSS_SHIFT)));
>
> It seems you mixed with other patch.
>
>
> Yep.
Plese don't include things not related to this patch.
Furthermore, please use plain-text mail client.
You mangled all of text. It makes communication hard in LKML.
>
>
> > diff --git a/include/linux/mm.h b/include/linux/mm.h
> > index ad06d42adb1a..f8129afebbdd 100644
> > --- a/include/linux/mm.h
> > +++ b/include/linux/mm.h
> > @@ -1507,14 +1507,28 @@ extern int mprotect_fixup(struct vm_area_struct
> *vma,
> > */
> > int __get_user_pages_fast(unsigned long start, int nr_pages, int write,
> > struct page **pages);
> > +
> > +#ifdef SPLIT_RSS_COUNTING
> > +/* Flush all task-buffered MM counters to the mm */
> > +void sync_mm_rss_all_users(struct mm_struct *mm);
>
> Really heavy functioin iterates all of processes and threads.
>
>
> Just all processes and the threads of each process attached to the mm.
> Maybe that's not much better.
>
>
> > +#endif
> > +
> > /*
> > * per-process(per-mm_struct) statistics.
> > */
> > static inline unsigned long get_mm_counter(struct mm_struct *mm, int
> member)
> > {
> > - long val = atomic_long_read(&mm->rss_stat.count[member]);
> > + long val;
> >
> > #ifdef SPLIT_RSS_COUNTING
> > + if (atomic_xchg(&mm->rss_stat.dirty, 0))
> > + sync_mm_rss_all_users(mm);
>
> So, if we dirty _a_ page, should we iterate all of processes and threads?
> Even, get_mm_counter would be used places without requiring accurate
> numbers. I think you can sync stats on place you really need to rather
> than adding this.
>
> I'd like to see all_threads_sync_mm_rss(mm_struct mm_struct *mm) which
> iterates
> just current's thread group(unless others are against) suggested by peterz.
> And then let's put it on places where you really need(e.g.,
> fs/proc/task_mmu.c
> somewhere).
>
>
> I thought about doing it that way, but it seemed odd that reading stats
> from proc should have the side effect of updating counters that things like
> the OOM killer and page scanning might use for their decisions.
I understand your concern but sync is not cheap if we should iterate all of
tasks. So each call site need to be reviewed which is more critical between
performance and accuracy. If we _really_ should be accurate in all of places,
then we should consider other way to avoid iterating of task_structs, IMO.
I guess it could make a long discussion thread about _it's really worth to do_.
>
> OTOH, in task_mmu, we know both the task and the mm, so we can skip the
> process scan of the mm is attached only to that one process.
>
> Otherwise, if you want to make all of path where get that rss accurate,
> I don't think iterating current's thread group is a good solution because
> getting rss is used for many places. We don't need to make them trouble.
>
> Thanks.
>
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2018-02-23 2:28 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-05 22:03 [PATCH] Synchronize task mm counters on context switch Daniel Colascione
2018-02-21 19:05 ` Daniel Colascione
2018-02-22 0:16 ` Minchan Kim
2018-02-22 0:23 ` Daniel Colascione
2018-02-22 2:06 ` Minchan Kim
2018-02-22 2:46 ` [PATCH] Synchronize task mm counters on demand Daniel Colascione
2018-02-23 2:01 ` Minchan Kim
2018-02-23 2:09 ` Daniel Colascione
2018-02-23 2:24 ` Daniel Colascione
2018-02-23 2:28 ` Minchan Kim [this message]
2018-02-23 2:43 ` Daniel Colascione
2018-02-23 3:12 ` Minchan Kim
2018-02-23 9:50 ` f66871fb4c: WARNING:inconsistent_lock_state kernel test robot
2018-02-22 2:49 ` [PATCH] Synchronize task mm counters on context switch Daniel Colascione
2018-02-23 8:11 ` Michal Hocko
2018-02-23 16:34 ` Daniel Colascione
2018-02-23 17:50 ` Michal Hocko
2018-02-23 18:47 ` Daniel Colascione
2018-02-27 10:02 ` Michal Hocko
2018-02-22 9:40 ` Peter Zijlstra
2018-02-22 13:06 ` Minchan Kim
2018-02-22 16:23 ` Daniel Colascione
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180223022810.GB115990@rodete-desktop-imager.corp.google.com \
--to=minchan@kernel.org \
--cc=dancol@google.com \
--cc=linux-mm@kvack.org \
--cc=peterz@infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox