- 13 Oct, 2018 2 commits
-
-
Alastair Robertson authored
-
Brendan Gregg authored
BPFTRACE_KERNEL_SOURCE environment variable
-
- 12 Oct, 2018 2 commits
- 11 Oct, 2018 1 commit
-
-
Alastair Robertson authored
Still continue regular clang parsing, just without extra kernel header flags
-
- 10 Oct, 2018 7 commits
-
-
Daniel Xu authored
The previous fix was bad as it elided a correct early return.
-
Brendan Gregg authored
Supress invalid file warning for wildcarded tracepoints
-
Brendan Gregg authored
Fix name of kernel required config option in INSTALL.md
-
Daniel Xu authored
Wildcards, unless expanded, are not valid tracepoints. We should not warn about missing files if the patch is wildcarded. Interestingly enough, the previous behavior (early return) could have caused fewer tracepoints to be attached than available. However in practice, this doesn't seem to happen. This closes issue #133.
-
Augusto Caringi authored
In Linux Kernel 4.7, CONFIG_HAVE_BPF_JIT was splitted into two (CONFIG_HAVE_EBPF_JIT and CONFIG_HAVE_CBPF_JIT) for distinguishing cBPF and eBPF JITs (https://www.mail-archive.com/netdev@vger.kernel.org/msg110538.html)
-
Brendan Gregg authored
Fix typos
-
Jakub Wilk authored
-
- 09 Oct, 2018 11 commits
-
-
Brendan Gregg authored
-
Brendan Gregg authored
Add filter by cgroup-v2 id
-
Brendan Gregg authored
INSTALL.md: add clang-devel as Fedora build dep
-
Henrik Nymann Jensen authored
-
Alban Crequy authored
To get the cgroup id, you can use the following program to call name_to_handle_at(), borrowed from linux/tools/testing/selftests/bpf/cgroup_helpers.c: ``` wget https://gist.githubusercontent.com/alban/4a9aea9636d9fdf11709eddd21df4cc4/raw/f4fc915483a069d6044957e27df091923f95c48b/getcgroupid.c gcc -Wall -o getcgroupid getcgroupid.c ./getcgroupid /sys/fs/cgroup/unified/ 0x100000001 4294967297 ``` To test it, I run the tracer in one terminal: ``` ./build.sh sudo ./build-release/src/bpftrace -e 'tracepoint:syscalls:sys_enter_openat /cgroup == 0x100000001/ { printf("%s\n", str(args->filename)); }' ``` And some tests in another terminal: ``` sudo -s echo $$ > /sys/fs/cgroup/unified/cgroup.procs cat /dev/null ``` And observe the output of the tracer: ``` Attaching 1 probe... /etc/ld.so.cache /lib64/libc.so.6 /usr/lib/locale/locale-archive /dev/null ^C ```
-
Brendan Gregg authored
-
Scott Tsai authored
List clang-devel as a build dependency on Fedora. Otherwise 'cmake' fails with: ``` CMake Error at CMakeLists.txt:67 (find_package): By not providing "FindClang.cmake" in CMAKE_MODULE_PATH this project has asked CMake to find a package configuration file provided by "Clang", but CMake did not find one. Could not find a package configuration file provided by "Clang" with any of the following names: ClangConfig.cmake clang-config.cmake Add the installation prefix of "Clang" to CMAKE_PREFIX_PATH or set "Clang_DIR" to a directory containing one of the above files. If "Clang" provides a separate development package or SDK, be sure it has been installed. ``` Remove llvm, llvm-libs since llvm-devel already pulls them in.
-
Brendan Gregg authored
fixed some small errors
-
Brendan Gregg authored
add fedora installation instructions to readme
-
Paweł Krupa authored
-
0xflotus authored
-
- 08 Oct, 2018 6 commits
-
-
Brendan Gregg authored
update tutorial with kprobe struct args
-
Brendan Gregg authored
-
Gaspar authored
fixes: https://github.com/iovisor/bpftrace/issues/8
-
Brendan Gregg authored
Update README/INSTALL
-
Alastair Robertson authored
-
Alastair Robertson authored
-
- 07 Oct, 2018 9 commits
-
-
Brendan Gregg authored
filename typo
-
Brendan Gregg authored
-
Brendan Gregg authored
Tools
-
Brendan Gregg authored
-
Brendan Gregg authored
-
Brendan Gregg authored
-
Brendan Gregg authored
-
Brendan Gregg authored
-
Alastair Robertson authored
To get full arguments to pass into Clang for reading kernel headers
-
- 04 Oct, 2018 1 commit
-
-
Brendan Gregg authored
-
- 01 Oct, 2018 1 commit
-
-
Brendan Gregg authored
cmake: rename gtest external project target
-