mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-26 05:34:13 +08:00
libbpf: Fix wrong variable used in perf_event_uprobe_open_legacy()
Use "type" as opposed to "err" in pr_warn() after determine_uprobe_perf_type_legacy() returns an error. Signed-off-by: Chuang Wang <nashuiliang@gmail.com> Signed-off-by: Andrii Nakryiko <andrii@kernel.org> Link: https://lore.kernel.org/bpf/20220629151848.65587-3-nashuiliang@gmail.com
This commit is contained in:
parent
8094029330
commit
5666fc997c
@ -10249,7 +10249,7 @@ static int perf_event_uprobe_open_legacy(const char *probe_name, bool retprobe,
|
||||
type = determine_uprobe_perf_type_legacy(probe_name, retprobe);
|
||||
if (type < 0) {
|
||||
pr_warn("failed to determine legacy uprobe event id for %s:0x%zx: %d\n",
|
||||
binary_path, offset, err);
|
||||
binary_path, offset, type);
|
||||
return type;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user