projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
71c8c39
)
veristat: avoid using kernel-internal headers
author
Andrii Nakryiko
<andrii@kernel.org>
Fri, 31 Mar 2023 22:24:04 +0000
(15:24 -0700)
committer
Alexei Starovoitov
<ast@kernel.org>
Sat, 1 Apr 2023 16:05:57 +0000
(09:05 -0700)
Drop linux/compiler.h include, which seems to be needed for ARRAY_SIZE
macro only. Redefine own version of ARRAY_SIZE instead.
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link:
https://lore.kernel.org/r/20230331222405.3468634-4-andrii@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
tools/testing/selftests/bpf/veristat.c
patch
|
blob
|
history
diff --git
a/tools/testing/selftests/bpf/veristat.c
b/tools/testing/selftests/bpf/veristat.c
index daac72b765082ca28edf0f1de43fc5ae4e38ec25..e592d05bccb2de66c974a0f79ec4fd55df3d4d62 100644
(file)
--- a/
tools/testing/selftests/bpf/veristat.c
+++ b/
tools/testing/selftests/bpf/veristat.c
@@
-4,7
+4,6
@@
#include <argp.h>
#include <string.h>
#include <stdlib.h>
-#include <linux/compiler.h>
#include <sched.h>
#include <pthread.h>
#include <dirent.h>
@@
-20,6
+19,10
@@
#include <gelf.h>
#include <float.h>
+#ifndef ARRAY_SIZE
+#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
+#endif
+
enum stat_id {
VERDICT,
DURATION,