linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Uladzislau Rezki <urezki@gmail.com>
To: "Huang, Ying" <ying.huang@intel.com>
Cc: Uladzislau Rezki <urezki@gmail.com>,
	huang ying <huang.ying.caritas@gmail.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	linux-mm@kvack.org, LKML <linux-kernel@vger.kernel.org>,
	Hillf Danton <hdanton@sina.com>, Michal Hocko <mhocko@suse.com>,
	Matthew Wilcox <willy@infradead.org>,
	Oleksiy Avramchenko <oleksiy.avramchenko@sonymobile.com>,
	Steven Rostedt <rostedt@goodmis.org>,
	Christoph Hellwig <hch@lst.de>
Subject: Re: [PATCH 2/2] mm/vmalloc: rework the drain logic
Date: Wed, 25 Nov 2020 21:34:38 +0100	[thread overview]
Message-ID: <20201125203438.GA7278@pc636> (raw)
In-Reply-To: <87o8jms1ed.fsf@yhuang-dev.intel.com>

On Wed, Nov 25, 2020 at 08:52:58AM +0800, Huang, Ying wrote:
> Uladzislau Rezki <urezki@gmail.com> writes:
> >> >> > - lazy_max_pages() can slightly be decreased. If there are existing
> >> >> > workloads which suffer from such long value. It would be good to get
> >> >> > real complains and evidence.
> >> >> >
> >> >> >> > Apart of it and in regard to CONFIG_KASAN_VMALLOC, it seems that we are not
> >> >> >> > allowed to drop the free_vmap_area_lock at all. Because any simultaneous
> >> >> >> > allocations are not allowed within a drain region, so it should occur in
> >> >> >> > disjoint regions. But i need to double check it.
> >> >> >> >
> >> >> >> >>
> >> >> >> >> And, can we reduce lazy_max_pages() to control the length of the
> >> >> >> >> purging list?  It could be > 8K if the vmalloc/vfree size is small.
> >> >> >> >>
> >> >> >> > We can adjust it for sure. But it will influence on number of global
> >> >> >> > TLB flushes that must be performed.
> >> >> >> 
> >> >> >> Em...  For example, if we set it to 100, then the number of the TLB
> >> >> >> flushes can be reduced to 1% of the un-optimized implementation
> >> >> >> already.  Do you think so?
> >> >> >> 
> >> >> > If we set lazy_max_pages() to vague value such as 100, the performance
> >> >> > will be just destroyed.
> >> >> 
> >> >> Sorry, my original words weren't clear enough.  What I really want to
> >> >> suggest is to control the length of the purging list instead of reduce
> >> >> lazy_max_pages() directly.  That is, we can have a "atomic_t
> >> >> nr_purge_item" to record the length of the purging list and start
> >> >> purging if (vmap_lazy_nr > lazy_max_pages && nr_purge_item >
> >> >> max_purge_item).  vmap_lazy_nr is to control the virtual address space,
> >> >> nr_purge_item is to control the batching purging latency.  "100" is just
> >> >> an example, the real value should be determined according to the test
> >> >> results.
> >> >> 
> >> > OK. Now i see what you meant. Please note, the merging is in place, so
> >> > the list size gets reduced.
> >> 
> >> Yes.  In theory, even with merging, the length of the purging list may
> >> become too long in some cases.  And the code/algorithm changes that are
> >> needed by controlling the length of the purging list is much less than
> >> that are needed by merging.  So I suggest to do length controlling
> >> firstly, then merging.  Again, just my 2 cents.
> >> 
> > All such kind of tuning parameters work for one case and does not for
> > others. Therefore i prefer to have something more generic that tends
> > to improve the things, instead of thinking how to tune parameters to
> > cover all test cases and workloads.
> 
> It's a new mechanism to control the length of the purging list directly.
> So, I don't think that's just parameter tuning.  It's just a simple and
> direct method.  It can work together with merging method to control the
> purging latency even if the vmap areas cannot be merged in some cases.
> But these cases may not exist in practice, so I will not insist to use
> this method.
> 
No problem. I see your point about an extra thing to control the list length.
Let's see if there are still complains from users. If we have such feedback, 
we will rework it further.

Thanks!

--
Vlad Rezki

      reply	other threads:[~2020-11-25 20:34 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-16 22:00 [PATCH 1/2] mm/vmalloc: use free_vm_area() if an allocation fails Uladzislau Rezki (Sony)
2020-11-16 22:00 ` [PATCH 2/2] mm/vmalloc: rework the drain logic Uladzislau Rezki (Sony)
2020-11-17  2:37   ` huang ying
2020-11-17 13:04     ` Uladzislau Rezki
2020-11-18  2:44       ` huang ying
2020-11-18 16:16         ` Uladzislau Rezki
2020-11-19  1:40           ` Huang, Ying
2020-11-19 17:36             ` Uladzislau Rezki
2020-11-20  2:34               ` Huang, Ying
2020-11-23 13:59                 ` Uladzislau Rezki
2020-11-24  2:25                   ` Huang, Ying
2020-11-24 16:40                     ` Uladzislau Rezki
2020-11-25  0:52                       ` Huang, Ying
2020-11-25 20:34                         ` Uladzislau Rezki [this message]

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=20201125203438.GA7278@pc636 \
    --to=urezki@gmail.com \
    --cc=akpm@linux-foundation.org \
    --cc=hch@lst.de \
    --cc=hdanton@sina.com \
    --cc=huang.ying.caritas@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=mhocko@suse.com \
    --cc=oleksiy.avramchenko@sonymobile.com \
    --cc=rostedt@goodmis.org \
    --cc=willy@infradead.org \
    --cc=ying.huang@intel.com \
    /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;
as well as URLs for NNTP newsgroup(s).