Skip to content

Commit f4c9da0

Browse files
d-e-s-odanobi
authored andcommitted
Update blazesym snapshot
Update the blazesym snapshot we use. This version includes a new API for caching process VMA metadata (libbpf/blazesym#991), which we will require for user space address symbolization. With this version we also include the Cargo.lock, which is required for the ongoing nixification work (bpftrace#3787). All changes: libbpf/blazesym@ccc02c1...6beb39e Signed-off-by: Daniel Müller <[email protected]>
1 parent cfc0d35 commit f4c9da0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ if (USE_BLAZESYM)
8585
FetchContent_Declare(
8686
blazesym
8787
GIT_REPOSITORY https://github.com/libbpf/blazesym.git
88-
GIT_TAG ccc02c14cc79b86018d2f56764448fb86a984a2a
88+
GIT_TAG 6beb39ebc8e3a604c7b483951c85c831c1bbe0d1
8989
)
9090
FetchContent_MakeAvailable(blazesym)
9191

src/ksyms.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ std::optional<std::string> Ksyms::resolve_blazesym_int(uint64_t addr,
6969
.type_size = sizeof(src),
7070
// Use default system-wide kallsyms file.
7171
.kallsyms = NULL,
72-
// Disable discovery and usage of kernel image.
72+
// Disable discovery and usage of a vmlinux file.
7373
// TODO: We should eventually support that, incorporating discovery logic
7474
// from find_vmlinux().
75-
.kernel_image = "",
75+
.vmlinux = "",
7676
};
7777
#pragma GCC diagnostic pop
7878
uint64_t addrs[1] = { addr };

0 commit comments

Comments
 (0)