aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/bpf/test_maps.c
diff options
context:
space:
mode:
authorXiaozhou Liu <liuxiaozhou@bytedance.com>2018-12-21 17:35:11 +0800
committerDaniel Borkmann <daniel@iogearbox.net>2019-01-01 13:48:59 +0100
commit8b6b25cf93b73e8e399adc55b0ffb9db32b881e0 (patch)
tree3fa3a1f3e72e2227271778d6451905b1c719db53 /tools/testing/selftests/bpf/test_maps.c
parentibmveth: fix DMA unmap error in ibmveth_xmit_start error path (diff)
downloadlinux-dev-8b6b25cf93b73e8e399adc55b0ffb9db32b881e0.tar.xz
linux-dev-8b6b25cf93b73e8e399adc55b0ffb9db32b881e0.zip
selftests/bpf: fix error printing in test_devmap()
As a simple fix, just print the correct map type. Signed-off-by: Xiaozhou Liu <liuxiaozhou@bytedance.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Diffstat (limited to '')
-rw-r--r--tools/testing/selftests/bpf/test_maps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/bpf/test_maps.c b/tools/testing/selftests/bpf/test_maps.c
index 9c79ee017df3..e2b9eee37187 100644
--- a/tools/testing/selftests/bpf/test_maps.c
+++ b/tools/testing/selftests/bpf/test_maps.c
@@ -510,7 +510,7 @@ static void test_devmap(int task, void *data)
fd = bpf_create_map(BPF_MAP_TYPE_DEVMAP, sizeof(key), sizeof(value),
2, 0);
if (fd < 0) {
- printf("Failed to create arraymap '%s'!\n", strerror(errno));
+ printf("Failed to create devmap '%s'!\n", strerror(errno));
exit(1);
}