Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1734746

Re: [PATCH] perf/core: Update cgroup time with descendants

From Jiri Olsa <jolsa@redhat.com>
Newsgroups linux.kernel
Subject Re: [PATCH] perf/core: Update cgroup time with descendants
Date 2017-09-19 10:50 +0200
Message-ID <urmo9-1TP-5@gated-at.bofh.it> (permalink)
References <upwrE-1VN-7@gated-at.bofh.it> <urg94-6pO-5@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Tue, Sep 19, 2017 at 10:02:50AM +0800, Lin Xiulei wrote:
> Add steps of reproducing
> 
> 1
> ```
> mkdir /sys/fs/cgroup/perf_event/root1
> mkdir /sys/fs/cgroup/perf_event/root1/leaf1
> ```
> 2  $pid is any running process
> ```
> echo $pid > /sys/fs/cgroup/perf_event/root1/cgroup.procs
> ```
> 
> 3
> ```
> perf stat -e cycles -G root1 -a -I 1000
> ```
> 
> You shall get 0 cycles from it, which should have been cycles of $pid
> 
> 2017-09-14 15:03 GMT+08:00  <linxiulei@gmail.com>:
> > From: "leilei.lin" <leilei.lin@alibaba-inc.com>
> >
> > This fix updating cgroup time when event is being scheduled in
> > by cgroup descendants
> >
> > Signed-off-by: leilei.lin <leilei.lin@alibaba-inc.com>
> > ---
> >  kernel/events/core.c | 4 +++-
> >  1 file changed, 3 insertions(+), 1 deletion(-)
> >
> > diff --git a/kernel/events/core.c b/kernel/events/core.c
> > index 3e691b7..6f6bd1e 100644
> > --- a/kernel/events/core.c
> > +++ b/kernel/events/core.c
> > @@ -662,7 +662,9 @@ static inline void update_cgrp_time_from_event(struct perf_event *event)
> >         /*
> >          * Do not update time when cgroup is not active
> >          */
> > -       if (cgrp == event->cgrp)
> > +       if (cgrp == event->cgrp ||
> > +               cgroup_is_descendant(cgrp->css.cgroup,
> > +                       event->cgrp->css.cgroup))
> >                 __update_cgrp_time(event->cgrp);

you no longer need the 'cgrp == event->cgrp', it's part
of the cgroup_is_descendant call

other than that it looks ok to me

Reviewed-and-tested-by: Jiri Olsa <jolsa@kernel.org>

thanks,
jirka

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

[PATCH] perf/core: Update cgroup time with descendants linxiulei@gmail.com - 2017-09-14 09:10 +0200
  Re: [PATCH] perf/core: Update cgroup time with descendants Lin Xiulei <linxiulei@gmail.com> - 2017-09-19 04:10 +0200
    Re: [PATCH] perf/core: Update cgroup time with descendants Jiri Olsa <jolsa@redhat.com> - 2017-09-19 10:50 +0200

csiph-web