]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
bpf: Fix verifier log string check for bad alignment.
authorDavid Miller <davem@davemloft.net>
Thu, 29 Nov 2018 06:33:53 +0000 (22:33 -0800)
committerAlexei Starovoitov <ast@kernel.org>
Fri, 30 Nov 2018 22:43:45 +0000 (14:43 -0800)
The message got changed a lot time ago.

This was responsible for 36 test case failures on sparc64.

Fixes: f1174f77b50c ("bpf/verifier: rework value tracking")
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
tools/testing/selftests/bpf/test_verifier.c

index 550b7e46bf4a4143059cc7ea58643adf11251353..5dd4410a716ce1ac09466ed6c26c21b37b2cff84 100644 (file)
@@ -14230,7 +14230,7 @@ static void do_test_single(struct bpf_test *test, bool unpriv,
 
        reject_from_alignment = fd_prog < 0 &&
                                (test->flags & F_NEEDS_EFFICIENT_UNALIGNED_ACCESS) &&
-                               strstr(bpf_vlog, "Unknown alignment.");
+                               strstr(bpf_vlog, "misaligned");
 #ifdef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
        if (reject_from_alignment) {
                printf("FAIL\nFailed due to alignment despite having efficient unaligned access: '%s'!\n",