[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <20250817052552.8953-4-vivekyadav1207731111@gmail.com>
Date: Sat, 16 Aug 2025 22:25:52 -0700
From: vivekyadav1207731111@...il.com
To: catalin.marinas@....com,
will@...nel.org,
shuah@...nel.org
Cc: linux-arm-kernel@...ts.infradead.org,
linux-kselftest@...r.kernel.org,
linux-kernel@...r.kernel.org,
Vivek Yadav <vivekyadav1207731111@...il.com>
Subject: [PATCH 3/3] kselftest/arm64: Add parentheses around sizeof for clarity
From: Vivek Yadav <vivekyadav1207731111@...il.com>
Added parentheses around sizeof to make the expression clearer
and improve readability. This change has no functional impact.
```
[command]
./scripts/checkpatch.pl tools/testing/selftests/arm64/fp/sve-ptrace.c
[output]
WARNING: sizeof *sve should be sizeof(*sve)
```
Fixes: 0dca276ac4d20 : selftests: arm64: Add test for the SVE ptrace interface
Signed-off-by: Vivek Yadav <vivekyadav1207731111@...il.com>
---
tools/testing/selftests/arm64/fp/sve-ptrace.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/testing/selftests/arm64/fp/sve-ptrace.c b/tools/testing/selftests/arm64/fp/sve-ptrace.c
index b22303778fb0..90c56b38dabf 100644
--- a/tools/testing/selftests/arm64/fp/sve-ptrace.c
+++ b/tools/testing/selftests/arm64/fp/sve-ptrace.c
@@ -115,7 +115,7 @@ static struct user_sve_header *get_sve(pid_t pid, const struct vec_type *type,
{
struct user_sve_header *sve;
void *p;
- size_t sz = sizeof *sve;
+ size_t sz = sizeof(*sve);
struct iovec iov;
while (1) {
--
2.25.1
Powered by blists - more mailing lists