From: Colin Ian King Date: Mon, 13 Aug 2018 14:00:32 +0000 (+0100) Subject: bpf: test: fix spelling mistake "REUSEEPORT" -> "REUSEPORT" X-Git-Tag: v4.19~410^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=26a1ccc6c117be8e33e0410fce8c5298b0015b99;p=platform%2Fkernel%2Flinux-rpi.git bpf: test: fix spelling mistake "REUSEEPORT" -> "REUSEPORT" Trivial fix to spelling mistake in error message Signed-off-by: Colin Ian King Acked-by: Alexei Starovoitov Signed-off-by: David S. Miller --- diff --git a/tools/testing/selftests/bpf/test_maps.c b/tools/testing/selftests/bpf/test_maps.c index 4b7c74f..6f54f84 100644 --- a/tools/testing/selftests/bpf/test_maps.c +++ b/tools/testing/selftests/bpf/test_maps.c @@ -1191,7 +1191,7 @@ static void prepare_reuseport_grp(int type, int map_fd, err = setsockopt(fd64, SOL_SOCKET, SO_REUSEPORT, &optval, sizeof(optval)); - CHECK(err == -1, "setsockopt(SO_REUSEEPORT)", + CHECK(err == -1, "setsockopt(SO_REUSEPORT)", "err:%d errno:%d\n", err, errno); /* reuseport_array does not allow unbound sk */