Skip to content

Commit f75e18c

Browse files
Li ZefanIngo Molnar
authored andcommitted
perf cgroup: Fix unmatched call to perf_detach_cgroup()
In the failure path, we call perf_detach_cgroup(), but we didn't call perf_get_cgroup() prio to it. Signed-off-by: Li Zefan <lizf@cn.fujitsu.com> Acked-by: Stephane Eranian <eranian@google.com> Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> LKML-Reference: <4D6F346E.9070606@cn.fujitsu.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
1 parent 3db272c commit f75e18c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

kernel/perf_event.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -412,6 +412,9 @@ static inline int perf_cgroup_connect(int fd, struct perf_event *event,
412412
cgrp = container_of(css, struct perf_cgroup, css);
413413
event->cgrp = cgrp;
414414

415+
/* must be done before we fput() the file */
416+
perf_get_cgroup(event);
417+
415418
/*
416419
* all events in a group must monitor
417420
* the same cgroup because a task belongs
@@ -420,9 +423,6 @@ static inline int perf_cgroup_connect(int fd, struct perf_event *event,
420423
if (group_leader && group_leader->cgrp != cgrp) {
421424
perf_detach_cgroup(event);
422425
ret = -EINVAL;
423-
} else {
424-
/* must be done before we fput() the file */
425-
perf_get_cgroup(event);
426426
}
427427
out:
428428
fput_light(file, fput_needed);

0 commit comments

Comments
 (0)