[<prev] [next>] [day] [month] [year] [list]
Message-ID: <2dc1d837343d3880057aee05dd047a57@208suo.com>
Date: Mon, 17 Jul 2023 15:56:47 +0800
From: shijie001@...suo.com
To: andrii@...nel.org, daniel@...earbox.net, shuah@...nel.org
Cc: bpf@...r.kernel.org, linux-kselftest@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH] selftests/bpf: Fix errors in log_fixup.c
The following checkpatch errors are removed:
ERROR: "foo* bar" should be "foo *bar"
Signed-off-by: Jie Shi <shijie001@...suo.com>
---
tools/testing/selftests/bpf/prog_tests/log_fixup.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tools/testing/selftests/bpf/prog_tests/log_fixup.c
b/tools/testing/selftests/bpf/prog_tests/log_fixup.c
index dba71d98a227..69959748d466 100644
--- a/tools/testing/selftests/bpf/prog_tests/log_fixup.c
+++ b/tools/testing/selftests/bpf/prog_tests/log_fixup.c
@@ -14,7 +14,7 @@ enum trunc_type {
static void bad_core_relo(size_t log_buf_size, enum trunc_type
trunc_type)
{
char log_buf[8 * 1024];
- struct test_log_fixup* skel;
+ struct test_log_fixup *skel;
int err;
skel = test_log_fixup__open();
@@ -72,7 +72,7 @@ static void bad_core_relo(size_t log_buf_size, enum
trunc_type trunc_type)
static void bad_core_relo_subprog(void)
{
char log_buf[8 * 1024];
- struct test_log_fixup* skel;
+ struct test_log_fixup *skel;
int err;
skel = test_log_fixup__open();
@@ -104,7 +104,7 @@ static void bad_core_relo_subprog(void)
static void missing_map(void)
{
char log_buf[8 * 1024];
- struct test_log_fixup* skel;
+ struct test_log_fixup *skel;
int err;
skel = test_log_fixup__open();
@@ -138,7 +138,7 @@ static void missing_map(void)
static void missing_kfunc(void)
{
char log_buf[8 * 1024];
- struct test_log_fixup* skel;
+ struct test_log_fixup *skel;
int err;
skel = test_log_fixup__open();
Powered by blists - more mailing lists