Commit 98857d11 authored by Ricardo B. Marlière's avatar Ricardo B. Marlière Committed by Andrii Nakryiko
Browse files

selftests/bpf: Fix bpf_prog_detach2 usage in test_lirc_mode2



Commit e9fc3ce9 ("libbpf: Streamline error reporting for high-level
APIs") redefined the way that bpf_prog_detach2() returns. Therefore, adapt
the usage in test_lirc_mode2_user.c.

Signed-off-by: default avatarRicardo B. Marlière <rbm@suse.com>
Signed-off-by: default avatarAndrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20250828-selftests-bpf-v1-1-c7811cd8b98c@suse.com
parent 737433c6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -74,7 +74,7 @@ int main(int argc, char **argv)

	/* Let's try detach it before it was ever attached */
	ret = bpf_prog_detach2(progfd, lircfd, BPF_LIRC_MODE2);
	if (ret != -1 || errno != ENOENT) {
	if (ret != -ENOENT) {
		printf("bpf_prog_detach2 not attached should fail: %m\n");
		return 1;
	}