From: Suren Baghdasaryan <surenb@google.com>
To: Petr Mladek <pmladek@suse.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Johannes Weiner <hannes@cmpxchg.org>,
Michal Hocko <mhocko@suse.com>,
Peter Zijlstra <peterz@infradead.org>,
Roman Gushchin <guro@fb.com>, Shakeel Butt <shakeelb@google.com>,
Minchan Kim <minchan@kernel.org>,
Tim Murray <timmurray@google.com>, linux-mm <linux-mm@kvack.org>,
LKML <linux-kernel@vger.kernel.org>,
kernel-team <kernel-team@android.com>
Subject: Re: [RFC 1/1] mm: page_alloc: replace mm_percpu_wq with kthreads in drain_all_pages
Date: Tue, 1 Mar 2022 13:12:19 -0800 [thread overview]
Message-ID: <CAJuCfpGYugkzoGvD4cXBLBWxUfwcge5Gx9PTEk-EuSAX=KSMzw@mail.gmail.com> (raw)
In-Reply-To: <20220301122520.GB23924@pathway.suse.cz>
On Tue, Mar 1, 2022 at 4:25 AM Petr Mladek <pmladek@suse.com> wrote:
>
> On Thu 2022-02-24 17:28:19, Suren Baghdasaryan wrote:
> > Sending as an RFC to confirm if this is the right direction and to
> > clarify if other tasks currently executed on mm_percpu_wq should be
> > also moved to kthreads. The patch seems stable in testing but I want
> > to collect more performance data before submitting a non-RFC version.
> >
> >
> > Currently drain_all_pages uses mm_percpu_wq to drain pages from pcp
> > list during direct reclaim. The tasks on a workqueue can be delayed
> > by other tasks in the workqueues using the same per-cpu worker pool.
> > This results in sizable delays in drain_all_pages when cpus are highly
> > contended.
> > Memory management operations designed to relieve memory pressure should
> > not be allowed to block by other tasks, especially if the task in direct
> > reclaim has higher priority than the blocking tasks.
> > Replace the usage of mm_percpu_wq with per-cpu low priority FIFO
> > kthreads to execute draining tasks.
> >
> > Suggested-by: Petr Mladek <pmladek@suse.com>
> > Signed-off-by: Suren Baghdasaryan <surenb@google.com>
>
> The patch looks good to me. See few comments below about things
> where I was in doubts. But I do not see any real problem with
> this approach.
Thanks for the review, Petr. One question inline.
Other than that I would like to check if:
1. Using low priority FIFO for these kthreads is warranted. From
https://lore.kernel.org/all/CAEe=Sxmow-jx60cDjFMY7qi7+KVc+BT++BTdwC5+G9E=1soMmQ@mail.gmail.com/#t
my understanding was that we want this work to be done by RT
kthread_worker but maybe that's not appropriate here?
2. Do we want to move any other work done on mm_percpu_wq
(vmstat_work, lru_add_drain_all) to these kthreads?
If what I have currently is ok, I'll post the first version.
Thanks,
Suren.
>
> > ---
> > mm/page_alloc.c | 84 ++++++++++++++++++++++++++++++++++++++++---------
> > 1 file changed, 70 insertions(+), 14 deletions(-)
> >
> > diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> > index 3589febc6d31..c9ab2cf4b05b 100644
> > --- a/mm/page_alloc.c
> > +++ b/mm/page_alloc.c
> > @@ -2209,6 +2210,58 @@ _deferred_grow_zone(struct zone *zone, unsigned int order)
> >
> > #endif /* CONFIG_DEFERRED_STRUCT_PAGE_INIT */
> >
> > +static void drain_local_pages_func(struct kthread_work *work);
> > +
> > +static int alloc_drain_worker(unsigned int cpu)
> > +{
> > + struct pcpu_drain *drain;
> > +
> > + mutex_lock(&pcpu_drain_mutex);
> > + drain = per_cpu_ptr(&pcpu_drain, cpu);
> > + drain->worker = kthread_create_worker_on_cpu(cpu, 0, "pg_drain/%u", cpu);
> > + if (IS_ERR(drain->worker)) {
> > + drain->worker = NULL;
> > + pr_err("Failed to create pg_drain/%u\n", cpu);
> > + goto out;
> > + }
> > + /* Ensure the thread is not blocked by normal priority tasks */
> > + sched_set_fifo_low(drain->worker->task);
> > + kthread_init_work(&drain->work, drain_local_pages_func);
> > +out:
> > + mutex_unlock(&pcpu_drain_mutex);
> > +
> > + return 0;
> > +}
> > +
> > +static int free_drain_worker(unsigned int cpu)
> > +{
> > + struct pcpu_drain *drain;
> > +
> > + mutex_lock(&pcpu_drain_mutex);
> > + drain = per_cpu_ptr(&pcpu_drain, cpu);
> > + kthread_cancel_work_sync(&drain->work);
>
> I do see not how CPU down was handled in the original code.
>
> Note that workqueues call unbind_workers() when a CPU
> is going down. The pending work items might be proceed
> on another CPU. From this POV, the new code looks more
> safe.
>
> > + kthread_destroy_worker(drain->worker);
> > + drain->worker = NULL;
> > + mutex_unlock(&pcpu_drain_mutex);
> > +
> > + return 0;
> > +}
> > +
> > +static void __init init_drain_workers(void)
> > +{
> > + unsigned int cpu;
> > +
> > + for_each_online_cpu(cpu)
> > + alloc_drain_worker(cpu);
>
> I though whether this need to be called under cpus_read_lock();
> And I think that the code should be safe as it is. There
> is this call chain:
>
> + kernel_init_freeable()
> + page_alloc_init_late()
> + init_drain_workers()
>
> It is called after smp_init() but before the init process
> is executed. I guess that nobody could trigger CPU hotplug
> at this state. So there there is no need to synchronize
> against it.
Should I add a comment here to describe why we don't need
cpus_read_lock here (due to init process not being active at this
time)?
>
> > +
> > + if (cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN,
> > + "page_alloc/drain:online",
> > + alloc_drain_worker,
> > + free_drain_worker)) {
> > + pr_err("page_alloc_drain: Failed to allocate a hotplug state\n");
>
> I am not sure if there are any special requirements about the
> ordering vs. other CPU hotplug operations.
>
> Just note that the per-CPU workqueues are started/stopped
> via CPUHP_AP_WORKQUEUE_ONLINE. They are available slightly
> earlier before CPUHP_AP_ONLINE_DYN when the CPU is being
> enabled.
>
> > + }
> > +}
> > +
> > void __init page_alloc_init_late(void)
> > {
> > struct zone *zone;
>
> Best Regards,
> Petr
next prev parent reply other threads:[~2022-03-01 21:12 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-25 1:28 Suren Baghdasaryan
2022-03-01 12:25 ` Petr Mladek
2022-03-01 21:12 ` Suren Baghdasaryan [this message]
2022-03-02 12:18 ` Petr Mladek
2022-03-02 0:21 ` Hillf Danton
2022-03-02 23:06 ` Suren Baghdasaryan
2022-03-07 16:35 ` Petr Mladek
2022-03-07 16:48 ` Suren Baghdasaryan
2022-03-07 17:04 ` Michal Hocko
2022-03-07 17:24 ` Suren Baghdasaryan
2022-03-17 23:04 ` Suren Baghdasaryan
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='CAJuCfpGYugkzoGvD4cXBLBWxUfwcge5Gx9PTEk-EuSAX=KSMzw@mail.gmail.com' \
--to=surenb@google.com \
--cc=akpm@linux-foundation.org \
--cc=guro@fb.com \
--cc=hannes@cmpxchg.org \
--cc=kernel-team@android.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mhocko@suse.com \
--cc=minchan@kernel.org \
--cc=peterz@infradead.org \
--cc=pmladek@suse.com \
--cc=shakeelb@google.com \
--cc=timmurray@google.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