Commit 1d5af02d authored by Jiri Olsa's avatar Jiri Olsa Committed by Arnaldo Carvalho de Melo

libperf: Move 'heads' from 'struct evlist' to 'struct perf_evlist'

Move 'heads' hash table from 'struct evlist' to 'struct perf_evlist'.
Signed-off-by: default avatarJiri Olsa <jolsa@kernel.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Michael Petlan <mpetlan@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lore.kernel.org/lkml/20190913132355.21634-27-jolsa@kernel.orgSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent e7eb9002
...@@ -11,6 +11,10 @@ ...@@ -11,6 +11,10 @@
void perf_evlist__init(struct perf_evlist *evlist) void perf_evlist__init(struct perf_evlist *evlist)
{ {
int i;
for (i = 0; i < PERF_EVLIST__HLIST_SIZE; ++i)
INIT_HLIST_HEAD(&evlist->heads[i]);
INIT_LIST_HEAD(&evlist->entries); INIT_LIST_HEAD(&evlist->entries);
evlist->nr_entries = 0; evlist->nr_entries = 0;
} }
......
...@@ -5,6 +5,9 @@ ...@@ -5,6 +5,9 @@
#include <linux/list.h> #include <linux/list.h>
#include <api/fd/array.h> #include <api/fd/array.h>
#define PERF_EVLIST__HLIST_BITS 8
#define PERF_EVLIST__HLIST_SIZE (1 << PERF_EVLIST__HLIST_BITS)
struct perf_cpu_map; struct perf_cpu_map;
struct perf_thread_map; struct perf_thread_map;
...@@ -17,6 +20,7 @@ struct perf_evlist { ...@@ -17,6 +20,7 @@ struct perf_evlist {
int nr_mmaps; int nr_mmaps;
size_t mmap_len; size_t mmap_len;
struct fdarray pollfd; struct fdarray pollfd;
struct hlist_head heads[PERF_EVLIST__HLIST_SIZE];
}; };
/** /**
......
...@@ -55,10 +55,6 @@ int sigqueue(pid_t pid, int sig, const union sigval value); ...@@ -55,10 +55,6 @@ int sigqueue(pid_t pid, int sig, const union sigval value);
void evlist__init(struct evlist *evlist, struct perf_cpu_map *cpus, void evlist__init(struct evlist *evlist, struct perf_cpu_map *cpus,
struct perf_thread_map *threads) struct perf_thread_map *threads)
{ {
int i;
for (i = 0; i < PERF_EVLIST__HLIST_SIZE; ++i)
INIT_HLIST_HEAD(&evlist->heads[i]);
perf_evlist__init(&evlist->core); perf_evlist__init(&evlist->core);
perf_evlist__set_maps(&evlist->core, cpus, threads); perf_evlist__set_maps(&evlist->core, cpus, threads);
fdarray__init(&evlist->core.pollfd, 64); fdarray__init(&evlist->core.pollfd, 64);
...@@ -475,7 +471,7 @@ static void perf_evlist__id_hash(struct evlist *evlist, ...@@ -475,7 +471,7 @@ static void perf_evlist__id_hash(struct evlist *evlist,
sid->id = id; sid->id = id;
sid->evsel = evsel; sid->evsel = evsel;
hash = hash_64(sid->id, PERF_EVLIST__HLIST_BITS); hash = hash_64(sid->id, PERF_EVLIST__HLIST_BITS);
hlist_add_head(&sid->node, &evlist->heads[hash]); hlist_add_head(&sid->node, &evlist->core.heads[hash]);
} }
void perf_evlist__id_add(struct evlist *evlist, struct evsel *evsel, void perf_evlist__id_add(struct evlist *evlist, struct evsel *evsel,
...@@ -549,7 +545,7 @@ struct perf_sample_id *perf_evlist__id2sid(struct evlist *evlist, u64 id) ...@@ -549,7 +545,7 @@ struct perf_sample_id *perf_evlist__id2sid(struct evlist *evlist, u64 id)
int hash; int hash;
hash = hash_64(id, PERF_EVLIST__HLIST_BITS); hash = hash_64(id, PERF_EVLIST__HLIST_BITS);
head = &evlist->heads[hash]; head = &evlist->core.heads[hash];
hlist_for_each_entry(sid, head, node) hlist_for_each_entry(sid, head, node)
if (sid->id == id) if (sid->id == id)
...@@ -635,7 +631,7 @@ struct evsel *perf_evlist__event2evsel(struct evlist *evlist, ...@@ -635,7 +631,7 @@ struct evsel *perf_evlist__event2evsel(struct evlist *evlist,
return first; return first;
hash = hash_64(id, PERF_EVLIST__HLIST_BITS); hash = hash_64(id, PERF_EVLIST__HLIST_BITS);
head = &evlist->heads[hash]; head = &evlist->core.heads[hash];
hlist_for_each_entry(sid, head, node) { hlist_for_each_entry(sid, head, node) {
if (sid->id == id) if (sid->id == id)
......
...@@ -48,12 +48,8 @@ enum bkw_mmap_state { ...@@ -48,12 +48,8 @@ enum bkw_mmap_state {
BKW_MMAP_EMPTY, BKW_MMAP_EMPTY,
}; };
#define PERF_EVLIST__HLIST_BITS 8
#define PERF_EVLIST__HLIST_SIZE (1 << PERF_EVLIST__HLIST_BITS)
struct evlist { struct evlist {
struct perf_evlist core; struct perf_evlist core;
struct hlist_head heads[PERF_EVLIST__HLIST_SIZE];
int nr_groups; int nr_groups;
bool enabled; bool enabled;
int id_pos; int id_pos;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment