Re: [PATCH 1/1 perf-tools-next] perf probe: Fix retrieval of source files from a debuginfod server
From: Frank Ch. Eigler
Date: Mon Oct 28 2024 - 17:57:12 EST
Hi -
> - if (!get_source_from_debuginfod(raw_path, sbuild_id, new_path))
> + char prefixed_raw_path[PATH_MAX];
> +
> + path__join(prefixed_raw_path, sizeof(prefixed_raw_path), comp_dir, raw_path);
> +
> + if (!get_source_from_debuginfod(prefixed_raw_path, sbuild_id, n
ew_path))
lgtm!
- FChE