diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2018-03-06 09:51:48 -0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2018-03-07 10:22:25 -0300 |
commit | 3ca32f69592be4d667c701763335fa496a0ede1d (patch) | |
tree | 7d8afb4c272eb43dd38954c12f07cf23abae1842 /tools/perf/util/cgroup.c | |
parent | a6adc9bdf59c77ea4efb844c27f25361f0399586 (diff) |
perf cgroup: Rename 'struct cgroup_sel' to 'struct cgroup'
That name isn't used, is shorter, lets switch to it.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: Wang Nan <wangnan0@huawei.com>
Link: https://lkml.kernel.org/n/tip-e51yphwgvepd1y4f5fjptmjq@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/cgroup.c')
-rw-r--r-- | tools/perf/util/cgroup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/perf/util/cgroup.c b/tools/perf/util/cgroup.c index 2e2aa6c86107..6ce291f45f2d 100644 --- a/tools/perf/util/cgroup.c +++ b/tools/perf/util/cgroup.c @@ -93,7 +93,7 @@ static int open_cgroup(char *name) static int add_cgroup(struct perf_evlist *evlist, char *str) { struct perf_evsel *counter; - struct cgroup_sel *cgrp = NULL; + struct cgroup *cgrp = NULL; int n; /* * check if cgrp is already defined, if so we reuse it @@ -144,7 +144,7 @@ found: return 0; } -void close_cgroup(struct cgroup_sel *cgrp) +void close_cgroup(struct cgroup *cgrp) { if (cgrp && refcount_dec_and_test(&cgrp->refcnt)) { close(cgrp->fd); @@ -158,7 +158,7 @@ int parse_cgroups(const struct option *opt, const char *str, { struct perf_evlist *evlist = *(struct perf_evlist **)opt->value; struct perf_evsel *counter; - struct cgroup_sel *cgrp = NULL; + struct cgroup *cgrp = NULL; const char *p, *e, *eos = str + strlen(str); char *s; int ret, i; |