From: Peter Zijlstra <peterz-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
To: Suren Baghdasaryan <surenb-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
Cc: tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
hannes-druUgvl0LCNAfugRpC6u6w@public.gmane.org,
lizefan.x-EC8Uxl6Npydl57MIdRCFDg@public.gmane.org,
mingo-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org,
juri.lelli-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org,
vincent.guittot-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org,
dietmar.eggemann-5wv7dgnIgG8@public.gmane.org,
rostedt-nx8X9YLhiw1AfugRpC6u6w@public.gmane.org,
bsegall-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org,
mgorman-l3A5Bk7waGM@public.gmane.org,
minchan-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
corbet-T1hC0tSOHrs@public.gmane.org,
bristot-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org,
paulmck-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
rdunlap-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org,
akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org,
tglx-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org,
macro-fOkVWZO6G+f10XsdtD+oqA@public.gmane.org,
viresh.kumar-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org,
mike.kravetz-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org,
linux-doc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
cgroups-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
kernel-team-z5hGa2qSFaRBDgjK7y7TUQ@public.gmane.org
Subject: Re: [PATCH v2 1/1] cgroup: make per-cgroup pressure stall tracking configurable
Date: Tue, 18 May 2021 20:52:51 +0200 [thread overview]
Message-ID: <20210518185251.GI5618@worktop.programming.kicks-ass.net> (raw)
In-Reply-To: <20210518020200.1790058-1-surenb-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
On Mon, May 17, 2021 at 07:02:00PM -0700, Suren Baghdasaryan wrote:
> diff --git a/kernel/sched/psi.c b/kernel/sched/psi.c
> index cc25a3cff41f..4b8e72640ac9 100644
> --- a/kernel/sched/psi.c
> +++ b/kernel/sched/psi.c
> @@ -148,6 +148,7 @@
> static int psi_bug __read_mostly;
>
> DEFINE_STATIC_KEY_FALSE(psi_disabled);
> +DEFINE_STATIC_KEY_FALSE(psi_cgroups_disabled);
I'm thinking the whole thing will be easier/clearer when you make this:
DEFINE_STATIC_KEY_TRUE(psi_cgroups_enabled);
>
> #ifdef CONFIG_PSI_DEFAULT_DISABLED
> static bool psi_enable;
> @@ -211,6 +212,9 @@ void __init psi_init(void)
> return;
> }
>
> + if (!cgroup_psi_enabled())
> + static_branch_enable(&psi_cgroups_disabled);
if (!cgroup_psi_enabled())
static_branch_disable(&psi_cgroups_enabled);
> +
> psi_period = jiffies_to_nsecs(PSI_FREQ);
> group_init(&psi_system);
> }
> @@ -744,23 +748,23 @@ static void psi_group_change(struct psi_group *group, int cpu,
>
> static struct psi_group *iterate_groups(struct task_struct *task, void **iter)
> {
> + if (*iter == &psi_system)
> + return NULL;
> +
> #ifdef CONFIG_CGROUPS
> + if (!static_branch_likely(&psi_cgroups_disabled)) {
if (static_branch_likely(&psi_cgroups_enabled)) {
> + struct cgroup *cgroup = NULL;
>
> + if (!*iter)
> + cgroup = task->cgroups->dfl_cgrp;
> + else
> + cgroup = cgroup_parent(*iter);
>
> + if (cgroup && cgroup_parent(cgroup)) {
> + *iter = cgroup;
> + return cgroup_psi(cgroup);
> + }
> }
> #endif
> *iter = &psi_system;
> return &psi_system;
But yes, very nice.
WARNING: multiple messages have this Message-ID (diff)
From: Peter Zijlstra <peterz@infradead.org>
To: Suren Baghdasaryan <surenb@google.com>
Cc: tj@kernel.org, hannes@cmpxchg.org, lizefan.x@bytedance.com,
mingo@redhat.com, juri.lelli@redhat.com,
vincent.guittot@linaro.org, dietmar.eggemann@arm.com,
rostedt@goodmis.org, bsegall@google.com, mgorman@suse.de,
minchan@kernel.org, corbet@lwn.net, bristot@redhat.com,
paulmck@kernel.org, rdunlap@infradead.org,
akpm@linux-foundation.org, tglx@linutronix.de, macro@orcam.me.uk,
viresh.kumar@linaro.org, mike.kravetz@oracle.com,
linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org,
cgroups@vger.kernel.org, kernel-team@android.com
Subject: Re: [PATCH v2 1/1] cgroup: make per-cgroup pressure stall tracking configurable
Date: Tue, 18 May 2021 20:52:51 +0200 [thread overview]
Message-ID: <20210518185251.GI5618@worktop.programming.kicks-ass.net> (raw)
In-Reply-To: <20210518020200.1790058-1-surenb@google.com>
On Mon, May 17, 2021 at 07:02:00PM -0700, Suren Baghdasaryan wrote:
> diff --git a/kernel/sched/psi.c b/kernel/sched/psi.c
> index cc25a3cff41f..4b8e72640ac9 100644
> --- a/kernel/sched/psi.c
> +++ b/kernel/sched/psi.c
> @@ -148,6 +148,7 @@
> static int psi_bug __read_mostly;
>
> DEFINE_STATIC_KEY_FALSE(psi_disabled);
> +DEFINE_STATIC_KEY_FALSE(psi_cgroups_disabled);
I'm thinking the whole thing will be easier/clearer when you make this:
DEFINE_STATIC_KEY_TRUE(psi_cgroups_enabled);
>
> #ifdef CONFIG_PSI_DEFAULT_DISABLED
> static bool psi_enable;
> @@ -211,6 +212,9 @@ void __init psi_init(void)
> return;
> }
>
> + if (!cgroup_psi_enabled())
> + static_branch_enable(&psi_cgroups_disabled);
if (!cgroup_psi_enabled())
static_branch_disable(&psi_cgroups_enabled);
> +
> psi_period = jiffies_to_nsecs(PSI_FREQ);
> group_init(&psi_system);
> }
> @@ -744,23 +748,23 @@ static void psi_group_change(struct psi_group *group, int cpu,
>
> static struct psi_group *iterate_groups(struct task_struct *task, void **iter)
> {
> + if (*iter == &psi_system)
> + return NULL;
> +
> #ifdef CONFIG_CGROUPS
> + if (!static_branch_likely(&psi_cgroups_disabled)) {
if (static_branch_likely(&psi_cgroups_enabled)) {
> + struct cgroup *cgroup = NULL;
>
> + if (!*iter)
> + cgroup = task->cgroups->dfl_cgrp;
> + else
> + cgroup = cgroup_parent(*iter);
>
> + if (cgroup && cgroup_parent(cgroup)) {
> + *iter = cgroup;
> + return cgroup_psi(cgroup);
> + }
> }
> #endif
> *iter = &psi_system;
> return &psi_system;
But yes, very nice.
next prev parent reply other threads:[~2021-05-18 18:52 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-18 2:02 [PATCH v2 1/1] cgroup: make per-cgroup pressure stall tracking configurable Suren Baghdasaryan
[not found] ` <20210518020200.1790058-1-surenb-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
2021-05-18 18:08 ` Shakeel Butt
2021-05-18 18:08 ` Shakeel Butt
2021-05-18 18:23 ` Suren Baghdasaryan
2021-05-18 18:23 ` Suren Baghdasaryan
2021-05-18 18:52 ` Peter Zijlstra [this message]
2021-05-18 18:52 ` Peter Zijlstra
[not found] ` <20210518185251.GI5618-IIpfhp3q70z/8w/KjCw3T+5/BudmfyzbbVWyRVo5IupeoWH0uzbU5w@public.gmane.org>
2021-05-18 18:55 ` Suren Baghdasaryan
2021-05-18 18:55 ` Suren Baghdasaryan
2021-05-24 19:58 ` Suren Baghdasaryan
2021-05-24 19:58 ` 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=20210518185251.GI5618@worktop.programming.kicks-ass.net \
--to=peterz-wegcikhe2lqwvfeawa7xhq@public.gmane.org \
--cc=akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org \
--cc=bristot-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
--cc=bsegall-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org \
--cc=cgroups-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=corbet-T1hC0tSOHrs@public.gmane.org \
--cc=dietmar.eggemann-5wv7dgnIgG8@public.gmane.org \
--cc=hannes-druUgvl0LCNAfugRpC6u6w@public.gmane.org \
--cc=juri.lelli-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
--cc=kernel-team-z5hGa2qSFaRBDgjK7y7TUQ@public.gmane.org \
--cc=linux-doc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=lizefan.x-EC8Uxl6Npydl57MIdRCFDg@public.gmane.org \
--cc=macro-fOkVWZO6G+f10XsdtD+oqA@public.gmane.org \
--cc=mgorman-l3A5Bk7waGM@public.gmane.org \
--cc=mike.kravetz-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org \
--cc=minchan-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=mingo-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
--cc=paulmck-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=rdunlap-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org \
--cc=rostedt-nx8X9YLhiw1AfugRpC6u6w@public.gmane.org \
--cc=surenb-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org \
--cc=tglx-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org \
--cc=tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=vincent.guittot-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
--cc=viresh.kumar-QSEj5FYQhm4dnm+yROfE0A@public.gmane.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.