diff options
Diffstat (limited to 'tools/testing/selftests/bpf/verifier/dead_code.c')
| -rw-r--r-- | tools/testing/selftests/bpf/verifier/dead_code.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/testing/selftests/bpf/verifier/dead_code.c b/tools/testing/selftests/bpf/verifier/dead_code.c index 5cf361d8eb1c..17fe33a75034 100644 --- a/tools/testing/selftests/bpf/verifier/dead_code.c +++ b/tools/testing/selftests/bpf/verifier/dead_code.c @@ -85,7 +85,7 @@  	BPF_MOV64_IMM(BPF_REG_0, 12),  	BPF_EXIT_INSN(),  	}, -	.errstr_unpriv = "function calls to other bpf functions are allowed for", +	.errstr_unpriv = "loading/calling other bpf or kernel functions are allowed for",  	.result_unpriv = REJECT,  	.result = ACCEPT,  	.retval = 7, @@ -103,7 +103,7 @@  	BPF_MOV64_IMM(BPF_REG_0, 12),  	BPF_EXIT_INSN(),  	}, -	.errstr_unpriv = "function calls to other bpf functions are allowed for", +	.errstr_unpriv = "loading/calling other bpf or kernel functions are allowed for",  	.result_unpriv = REJECT,  	.result = ACCEPT,  	.retval = 7, @@ -121,7 +121,7 @@  	BPF_RAW_INSN(BPF_JMP | BPF_CALL, 0, 1, 0, -5),  	BPF_EXIT_INSN(),  	}, -	.errstr_unpriv = "function calls to other bpf functions are allowed for", +	.errstr_unpriv = "loading/calling other bpf or kernel functions are allowed for",  	.result_unpriv = REJECT,  	.result = ACCEPT,  	.retval = 7, @@ -137,7 +137,7 @@  	BPF_MOV64_REG(BPF_REG_0, BPF_REG_1),  	BPF_EXIT_INSN(),  	}, -	.errstr_unpriv = "function calls to other bpf functions are allowed for", +	.errstr_unpriv = "loading/calling other bpf or kernel functions are allowed for",  	.result_unpriv = REJECT,  	.result = ACCEPT,  	.retval = 2, @@ -152,7 +152,7 @@  	BPF_MOV64_REG(BPF_REG_0, BPF_REG_1),  	BPF_EXIT_INSN(),  	}, -	.errstr_unpriv = "function calls to other bpf functions are allowed for", +	.errstr_unpriv = "loading/calling other bpf or kernel functions are allowed for",  	.result_unpriv = REJECT,  	.result = ACCEPT,  	.retval = 2,  |