[LTP] [PATCH v2 2/4] bpf: Print full verification log
Cyril Hrubis
chrubis@suse.cz
Tue Aug 31 11:51:04 CEST 2021
Hi!
> diff --git a/testcases/kernel/syscalls/bpf/bpf_common.c b/testcases/kernel/syscalls/bpf/bpf_common.c
> index ba0829a75..aac235cac 100644
> --- a/testcases/kernel/syscalls/bpf/bpf_common.c
> +++ b/testcases/kernel/syscalls/bpf/bpf_common.c
> @@ -3,6 +3,8 @@
> * Copyright (c) 2019-2020 Linux Test Project
> */
>
> +#include <stdio.h>
I've removed this now unused include.
> #define TST_NO_DEFAULT_MAIN
> #include "tst_test.h"
> #include "bpf_common.h"
> @@ -118,8 +120,10 @@ int bpf_load_prog(union bpf_attr *const attr, const char *const log)
> if (ret != -1)
> tst_brk(TBROK, "Invalid bpf() return value: %d", ret);
>
> - if (log[0] != 0)
> - tst_brk(TBROK | TERRNO, "Failed verification: %s", log);
> + if (log[0] != 0) {
> + tst_printf("%s\n", log);
> + tst_brk(TBROK | TERRNO, "Failed verification");
> + }
>
> tst_brk(TBROK | TERRNO, "Failed to load program");
> return ret;
And pushed the whole patchset, thanks.
--
Cyril Hrubis
chrubis@suse.cz
More information about the ltp
mailing list