selftests/bpf: Fix a typo in test_maps
authorAnton Protopopov <a.s.protopopov@gmail.com>
Wed, 27 May 2020 18:56:56 +0000 (18:56 +0000)
committerAlexei Starovoitov <ast@kernel.org>
Mon, 1 Jun 2020 21:38:21 +0000 (14:38 -0700)
Trivial fix to a typo in the test_map_wronly test: "read" -> "write"

Signed-off-by: Anton Protopopov <a.s.protopopov@gmail.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Link: https://lore.kernel.org/bpf/20200527185700.14658-2-a.s.protopopov@gmail.com
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
tools/testing/selftests/bpf/test_maps.c

index c6766b2cff853c01d3cd957c427c0ed9150d219a..f717acc0c68d862eb681f75924d46dd1fbcdf122 100644 (file)
@@ -1410,7 +1410,7 @@ static void test_map_wronly(void)
        fd = bpf_create_map(BPF_MAP_TYPE_HASH, sizeof(key), sizeof(value),
                            MAP_SIZE, map_flags | BPF_F_WRONLY);
        if (fd < 0) {
-               printf("Failed to create map for read only test '%s'!\n",
+               printf("Failed to create map for write only test '%s'!\n",
                       strerror(errno));
                exit(1);
        }