diff options
author | Alexei Starovoitov <ast@fb.com> | 2016-04-27 21:56:22 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-04-28 17:29:45 -0400 |
commit | 569cc39d39385a74b23145496bca2df5ac8b2fb8 (patch) | |
tree | d19ff13218ada2b400bece7a058919478afea9ce | |
parent | 6aff67c85c9e5a4bc99e5211c1bac547936626ca (diff) |
samples/bpf: fix trace_output example
llvm cannot always recognize memset as builtin function and optimize
it away, so just delete it. It was a leftover from testing
of bpf_perf_event_output() with large data structures.
Fixes: 39111695b1b8 ("samples: bpf: add bpf_perf_event_output example")
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | samples/bpf/trace_output_kern.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/samples/bpf/trace_output_kern.c b/samples/bpf/trace_output_kern.c index 8d8d1ec429eb..9b96f4fb8cea 100644 --- a/samples/bpf/trace_output_kern.c +++ b/samples/bpf/trace_output_kern.c | |||
@@ -18,7 +18,6 @@ int bpf_prog1(struct pt_regs *ctx) | |||
18 | u64 cookie; | 18 | u64 cookie; |
19 | } data; | 19 | } data; |
20 | 20 | ||
21 | memset(&data, 0, sizeof(data)); | ||
22 | data.pid = bpf_get_current_pid_tgid(); | 21 | data.pid = bpf_get_current_pid_tgid(); |
23 | data.cookie = 0x12345678; | 22 | data.cookie = 0x12345678; |
24 | 23 | ||