]> asedeno.scripts.mit.edu Git - linux.git/commit
libbpf: use negative fd to specify missing BTF
authorAndrii Nakryiko <andriin@fb.com>
Wed, 29 May 2019 17:36:08 +0000 (10:36 -0700)
committerDaniel Borkmann <daniel@iogearbox.net>
Wed, 29 May 2019 23:23:35 +0000 (01:23 +0200)
commitfba01a0689a98613f5ee3b1569fd9321f3fde7bd
tree359d69754de209de08203f3f709d8a0a88528c56
parentf102154d3158c8fe9713f03bd3492f9cb8409a5e
libbpf: use negative fd to specify missing BTF

0 is a valid FD, so it's better to initialize it to -1, as is done in
other places. Also, technically, BTF type ID 0 is valid (it's a VOID
type), so it's more reliable to check btf_fd, instead of
btf_key_type_id, to determine if there is any BTF associated with a map.

Acked-by: Song Liu <songliubraving@fb.com>
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
tools/lib/bpf/libbpf.c