-
Notifications
You must be signed in to change notification settings - Fork 315
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
examples/rust: Add a rust example of profiling.
bzsstack gets a stack trace of kernel and userspace of the running process on each CPU every second and symbolizes them. It will show symbol names, file names, and line numbers, if there are, of addresses in stack traces. Signed-off-by: Kui-Feng Lee <[email protected]>
- Loading branch information
Showing
12 changed files
with
588 additions
and
159 deletions.
There are no files selected for viewing
Submodule blazesym
updated
from 976c46 to 1e1f48
Submodule bpftool
updated
33 files
+1 −1 | BPF-CHECKPOINT-COMMIT | |
+1 −1 | CHECKPOINT-COMMIT | |
+9 −0 | README.md | |
+17 −1 | bash-completion/bpftool | |
+115 −0 | docs/bpftool-gen.rst | |
+12 −1 | docs/bpftool.rst | |
+8 −0 | include/linux/filter.h | |
+0 −48 | include/tools/libc_compat.h | |
+111 −7 | include/uapi/linux/bpf.h | |
+2 −2 | include/uapi/linux/btf.h | |
+1 −0 | include/uapi/linux/if_link.h | |
+7 −3 | include/uapi/linux/perf_event.h | |
+1 −1 | libbpf | |
+152 −0 | scripts/sync-kernel-expected-diff.patch | |
+21 −1 | scripts/sync-kernel.sh | |
+14 −18 | src/Makefile | |
+2 −7 | src/Makefile.feature | |
+53 −9 | src/btf.c | |
+1 −9 | src/common.c | |
+158 −19 | src/feature.c | |
+1,261 −145 | src/gen.c | |
+4 −0 | src/link.c | |
+3 −3 | src/main.c | |
+3 −3 | src/main.h | |
+18 −26 | src/map.c | |
+57 −55 | src/perf.c | |
+8 −1 | src/pids.c | |
+6 −7 | src/prog.c | |
+22 −0 | src/skeleton/pid_iter.bpf.c | |
+2 −0 | src/skeleton/pid_iter.h | |
+0 −2 | src/struct_ops.c | |
+1 −1 | src/tracelog.c | |
+3 −2 | src/xlated_dumper.c |
Oops, something went wrong.