aboutsummaryrefslogtreecommitdiffstats
path: root/samples/bpf/tracex2_user.c
diff options
context:
space:
mode:
authorAlexei Starovoitov <ast@fb.com>2016-02-02 01:39:58 -0500
committerDavid S. Miller <davem@davemloft.net>2016-02-06 03:34:36 -0500
commit3059303f59cf90a84e7fdef154ff0b215bcfaa97 (patch)
treebacdf1b8025256fc591b1fd935a99f0b6af7466f /samples/bpf/tracex2_user.c
parentdf570f577231407d929bdc6f59ae2f53e0028e8a (diff)
samples/bpf: update tracex[23] examples to use per-cpu maps
Signed-off-by: Alexei Starovoitov <ast@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'samples/bpf/tracex2_user.c')
-rw-r--r--samples/bpf/tracex2_user.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/samples/bpf/tracex2_user.c b/samples/bpf/tracex2_user.c
index cd0241c1447a..ab5b19e68acf 100644
--- a/samples/bpf/tracex2_user.c
+++ b/samples/bpf/tracex2_user.c
@@ -37,6 +37,8 @@ struct hist_key {
37static void print_hist_for_pid(int fd, void *task) 37static void print_hist_for_pid(int fd, void *task)
38{ 38{
39 struct hist_key key = {}, next_key; 39 struct hist_key key = {}, next_key;
40 unsigned int nr_cpus = sysconf(_SC_NPROCESSORS_CONF);
41 long values[nr_cpus];
40 char starstr[MAX_STARS]; 42 char starstr[MAX_STARS];
41 long value; 43 long value;
42 long data[MAX_INDEX] = {}; 44 long data[MAX_INDEX] = {};
@@ -49,7 +51,10 @@ static void print_hist_for_pid(int fd, void *task)
49 key = next_key; 51 key = next_key;
50 continue; 52 continue;
51 } 53 }
52 bpf_lookup_elem(fd, &next_key, &value); 54 bpf_lookup_elem(fd, &next_key, values);
55 value = 0;
56 for (i = 0; i < nr_cpus; i++)
57 value += values[i];
53 ind = next_key.index; 58 ind = next_key.index;
54 data[ind] = value; 59 data[ind] = value;
55 if (value && ind > max_ind) 60 if (value && ind > max_ind)