[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20170901212907.5662-1-thomas@m3y3r.de>
Date: Fri, 1 Sep 2017 23:29:02 +0200
From: Thomas Meyer <thomas@...3r.de>
To: linux-kernel@...r.kernel.org
Cc: Thomas Meyer <thomas@...3r.de>
Subject: [PATCH 1/6] perf tools: Use ARRAY_SIZE macro
Found by a coccinelle run with:
make coccicheck MODE=patch COCCI=scripts/coccinelle/misc/array_size.cocci
Signed-off-by: Thomas Meyer <thomas@...3r.de>
---
tools/perf/tests/bpf.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/perf/tests/bpf.c b/tools/perf/tests/bpf.c
index 5876da126b58..4e7b5b63ac28 100644
--- a/tools/perf/tests/bpf.c
+++ b/tools/perf/tests/bpf.c
@@ -309,7 +309,7 @@ static int check_env(void)
}
err = bpf_load_program(BPF_PROG_TYPE_KPROBE, insns,
- sizeof(insns) / sizeof(insns[0]),
+ ARRAY_SIZE(insns),
license, kver_int, NULL, 0);
if (err < 0) {
pr_err("Missing basic BPF support, skip this test: %s\n",
--
2.11.0
Powered by blists - more mailing lists