mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-16 09:13:55 +08:00
test_bpf: avoid oopsing the kernel when generate_test_data() fails.
Signed-off-by: Nicolas Schichan <nschichan@freebox.fr> Acked-by: Alexei Starovoitov <ast@plumgrid.com> Acked-by: Daniel Borkmann <daniel@iogearbox.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c71b5ad06e
commit
e34684f88e
@ -4672,6 +4672,11 @@ static int run_one(const struct bpf_prog *fp, struct bpf_test *test)
|
||||
break;
|
||||
|
||||
data = generate_test_data(test, i);
|
||||
if (!data && !(test->aux & FLAG_NO_DATA)) {
|
||||
pr_cont("data generation failed ");
|
||||
err_cnt++;
|
||||
break;
|
||||
}
|
||||
ret = __run_one(fp, data, runs, &duration);
|
||||
release_test_data(test, data);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user