mirror of
https://github.com/torvalds/linux.git
synced 2026-05-26 08:02:27 +02:00
perf dso: Move libunwind dso_data variables into ifdef
The variables elf_base_addr, debug_frame_offset, eh_frame_hdr_addr and eh_frame_hdr_offset are only accessed in unwind-libunwind-local.c which is conditionally built on having libunwind support. Make the variables conditional on libunwind support too. Reviewed-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: Ian Rogers <irogers@google.com> Reviewed-by: Namhyung Kim <namhyung@kernel.org> Acked-by: Arnaldo Carvalho de Melo <acme@kernel.org> Link: https://lore.kernel.org/r/20250319050741.269828-2-irogers@google.com Signed-off-by: Namhyung Kim <namhyung@kernel.org>
This commit is contained in:
parent
d10a7aaaf8
commit
f1794ecb0c
|
|
@ -155,10 +155,12 @@ struct dso_data {
|
|||
int status;
|
||||
u32 status_seen;
|
||||
u64 file_size;
|
||||
#ifdef HAVE_LIBUNWIND_SUPPORT
|
||||
u64 elf_base_addr;
|
||||
u64 debug_frame_offset;
|
||||
u64 eh_frame_hdr_addr;
|
||||
u64 eh_frame_hdr_offset;
|
||||
#endif
|
||||
};
|
||||
|
||||
struct dso_bpf_prog {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user