All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] perf/core: Fix installing cgroup event into cpu
@ 2018-01-11  3:09 linxiulei
  2018-01-18  1:57 ` Lin Xiulei
  0 siblings, 1 reply; 2+ messages in thread
From: linxiulei @ 2018-01-11  3:09 UTC (permalink / raw)
  To: peterz, jolsa, mingo, acme, alexander.shishkin, linux-kernel,
	tglx, eranian, torvalds, linux-perf-users, brendan.d.gregg
  Cc: yang_oliver, jinli.zjl, leilei.lin

From: "leilei.lin" <leilei.lin@alibaba-inc.com>

Do not install cgroup event into the CPU context if the cgroup
is not running on this CPU

While there is no task of cgroup running specified CPU, current
kernel still install cgroup event into CPU context, that causes
another cgroup event can't be installed into this CPU.

Signed-off-by: leilei.lin <leilei.lin@alibaba-inc.com>
---
 kernel/events/core.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/kernel/events/core.c b/kernel/events/core.c
index 4df5b69..19c587b 100644
--- a/kernel/events/core.c
+++ b/kernel/events/core.c
@@ -2284,6 +2284,7 @@ static int  __perf_install_in_context(void *info)
 	struct perf_event_context *ctx = event->ctx;
 	struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
 	struct perf_event_context *task_ctx = cpuctx->task_ctx;
+	struct perf_cgroup *cgrp;
 	bool reprogram = true;
 	int ret = 0;
 
@@ -2311,6 +2312,19 @@ static int  __perf_install_in_context(void *info)
 		raw_spin_lock(&task_ctx->lock);
 	}
 
+	if (event->cgrp) {
+		/*
+		 * Only care about cgroup events.
+		 *
+		 * If only the task belongs to cgroup of this event,
+		 * we will continue the installment
+		 */
+		cgrp = perf_cgroup_from_task(current, ctx);
+		if (!cgroup_is_descendant(cgrp->css.cgroup,
+					event->cgrp->css.cgroup))
+			goto unlock;
+	}
+
 	if (reprogram) {
 		ctx_sched_out(ctx, cpuctx, EVENT_TIME);
 		add_event_to_ctx(event, ctx);
-- 
2.8.4.31.g9ed660f

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] perf/core: Fix installing cgroup event into cpu
  2018-01-11  3:09 [PATCH] perf/core: Fix installing cgroup event into cpu linxiulei
@ 2018-01-18  1:57 ` Lin Xiulei
  0 siblings, 0 replies; 2+ messages in thread
From: Lin Xiulei @ 2018-01-18  1:57 UTC (permalink / raw)
  To: Peter Zijlstra, Jiri Olsa, mingo, acme, alexander.shishkin,
	linux-kernel, tglx, Stephane Eranian, torvalds, linux-perf-users,
	Brendan Gregg

Hi Peter

Could you please have a look of this

thanks

2018-01-11 11:09 GMT+08:00  <linxiulei@gmail.com>:
> From: "leilei.lin" <leilei.lin@alibaba-inc.com>
>
> Do not install cgroup event into the CPU context if the cgroup
> is not running on this CPU
>
> While there is no task of cgroup running specified CPU, current
> kernel still install cgroup event into CPU context, that causes
> another cgroup event can't be installed into this CPU.
>
> Signed-off-by: leilei.lin <leilei.lin@alibaba-inc.com>
> ---
>  kernel/events/core.c | 14 ++++++++++++++
>  1 file changed, 14 insertions(+)
>
> diff --git a/kernel/events/core.c b/kernel/events/core.c
> index 4df5b69..19c587b 100644
> --- a/kernel/events/core.c
> +++ b/kernel/events/core.c
> @@ -2284,6 +2284,7 @@ static int  __perf_install_in_context(void *info)
>         struct perf_event_context *ctx = event->ctx;
>         struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
>         struct perf_event_context *task_ctx = cpuctx->task_ctx;
> +       struct perf_cgroup *cgrp;
>         bool reprogram = true;
>         int ret = 0;
>
> @@ -2311,6 +2312,19 @@ static int  __perf_install_in_context(void *info)
>                 raw_spin_lock(&task_ctx->lock);
>         }
>
> +       if (event->cgrp) {
> +               /*
> +                * Only care about cgroup events.
> +                *
> +                * If only the task belongs to cgroup of this event,
> +                * we will continue the installment
> +                */
> +               cgrp = perf_cgroup_from_task(current, ctx);
> +               if (!cgroup_is_descendant(cgrp->css.cgroup,
> +                                       event->cgrp->css.cgroup))
> +                       goto unlock;
> +       }
> +
>         if (reprogram) {
>                 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
>                 add_event_to_ctx(event, ctx);
> --
> 2.8.4.31.g9ed660f
>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-01-18  1:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-11  3:09 [PATCH] perf/core: Fix installing cgroup event into cpu linxiulei
2018-01-18  1:57 ` Lin Xiulei

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.