* [PATCH] selftests/x86: clean up sysret_rip coding style
@ 2026-01-11 14:39 neogulmanpassingby
2026-01-11 16:18 ` Borislav Petkov
2026-01-11 21:01 ` [PATCH v2] " UYeol Jo
0 siblings, 2 replies; 3+ messages in thread
From: neogulmanpassingby @ 2026-01-11 14:39 UTC (permalink / raw)
To: x86
Cc: linux-kselftest, linux-kernel, tglx, mingo, bp, dave.hansen, hpa,
neogulmanpassingby
Tidy up sysret_rip style (cast spacing, main(void), const placement).
No functional change intended.
Signed-off-by: neogulmanpassingby <jouyeol8739@gmail.com>
---
tools/testing/selftests/x86/sysret_rip.c | 12 +++++-------
1 file changed, 5 insertions(+), 7 deletions(-)
diff --git a/tools/testing/selftests/x86/sysret_rip.c b/tools/testing/selftests/x86/sysret_rip.c
index 5fb531e3ad7c..2e423a335e1c 100644
--- a/tools/testing/selftests/x86/sysret_rip.c
+++ b/tools/testing/selftests/x86/sysret_rip.c
@@ -31,7 +31,7 @@
void test_syscall_ins(void);
extern const char test_page[];
-static void const *current_test_page_addr = test_page;
+static const void *current_test_page_addr = test_page;
/* State used by our signal handlers. */
static gregset_t initial_regs;
@@ -40,7 +40,7 @@ static volatile unsigned long rip;
static void sigsegv_for_sigreturn_test(int sig, siginfo_t *info, void *ctx_void)
{
- ucontext_t *ctx = (ucontext_t*)ctx_void;
+ ucontext_t *ctx = (ucontext_t *)ctx_void;
if (rip != ctx->uc_mcontext.gregs[REG_RIP]) {
printf("[FAIL]\tRequested RIP=0x%lx but got RIP=0x%lx\n",
@@ -56,7 +56,7 @@ static void sigsegv_for_sigreturn_test(int sig, siginfo_t *info, void *ctx_void)
static void sigusr1(int sig, siginfo_t *info, void *ctx_void)
{
- ucontext_t *ctx = (ucontext_t*)ctx_void;
+ ucontext_t *ctx = (ucontext_t *)ctx_void;
memcpy(&initial_regs, &ctx->uc_mcontext.gregs, sizeof(gregset_t));
@@ -69,8 +69,6 @@ static void sigusr1(int sig, siginfo_t *info, void *ctx_void)
ctx->uc_mcontext.gregs[REG_R11]);
sethandler(SIGSEGV, sigsegv_for_sigreturn_test, SA_RESETHAND);
-
- return;
}
static void test_sigreturn_to(unsigned long ip)
@@ -84,7 +82,7 @@ static jmp_buf jmpbuf;
static void sigsegv_for_fallthrough(int sig, siginfo_t *info, void *ctx_void)
{
- ucontext_t *ctx = (ucontext_t*)ctx_void;
+ ucontext_t *ctx = (ucontext_t *)ctx_void;
if (rip != ctx->uc_mcontext.gregs[REG_RIP]) {
printf("[FAIL]\tExpected SIGSEGV at 0x%lx but got RIP=0x%lx\n",
@@ -130,7 +128,7 @@ static void test_syscall_fallthrough_to(unsigned long ip)
printf("[OK]\tWe survived\n");
}
-int main()
+int main(void)
{
/*
* When the kernel returns from a slow-path syscall, it will
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] selftests/x86: clean up sysret_rip coding style
2026-01-11 14:39 [PATCH] selftests/x86: clean up sysret_rip coding style neogulmanpassingby
@ 2026-01-11 16:18 ` Borislav Petkov
2026-01-11 21:01 ` [PATCH v2] " UYeol Jo
1 sibling, 0 replies; 3+ messages in thread
From: Borislav Petkov @ 2026-01-11 16:18 UTC (permalink / raw)
To: neogulmanpassingby
Cc: x86, linux-kselftest, linux-kernel, tglx, mingo, dave.hansen, hpa
On Sun, Jan 11, 2026 at 11:39:56PM +0900, neogulmanpassingby wrote:
> Tidy up sysret_rip style (cast spacing, main(void), const placement).
> No functional change intended.
>
> Signed-off-by: neogulmanpassingby <jouyeol8739@gmail.com>
https://kernel.org/doc/html/latest/process/submitting-patches.html#sign-your-work-the-developer-s-certificate-of-origin
"then you just add a line saying:
Signed-off-by: Random J Developer <random@developer.example.org>
using a known identity (sorry, no anonymous contributions.)"
^^^^^^^^^^^^^^
--
Regards/Gruss,
Boris.
https://people.kernel.org/tglx/notes-about-netiquette
^ permalink raw reply [flat|nested] 3+ messages in thread* [PATCH v2] selftests/x86: clean up sysret_rip coding style
2026-01-11 14:39 [PATCH] selftests/x86: clean up sysret_rip coding style neogulmanpassingby
2026-01-11 16:18 ` Borislav Petkov
@ 2026-01-11 21:01 ` UYeol Jo
1 sibling, 0 replies; 3+ messages in thread
From: UYeol Jo @ 2026-01-11 21:01 UTC (permalink / raw)
To: x86
Cc: linux-kselftest, linux-kernel, tglx, mingo, bp, dave.hansen, hpa,
UYeol Jo
Tidy up sysret_rip style (cast spacing, main(void), const placement).
No functional change intended.
Signed-off-by: UYeol Jo <jouyeol8739@gmail.com>
---
v2:
- Use real name in Signed-off-by (per feedback). No code changes.
tools/testing/selftests/x86/sysret_rip.c | 12 +++++-------
1 file changed, 5 insertions(+), 7 deletions(-)
diff --git a/tools/testing/selftests/x86/sysret_rip.c b/tools/testing/selftests/x86/sysret_rip.c
index 5fb531e3ad7c..2e423a335e1c 100644
--- a/tools/testing/selftests/x86/sysret_rip.c
+++ b/tools/testing/selftests/x86/sysret_rip.c
@@ -31,7 +31,7 @@
void test_syscall_ins(void);
extern const char test_page[];
-static void const *current_test_page_addr = test_page;
+static const void *current_test_page_addr = test_page;
/* State used by our signal handlers. */
static gregset_t initial_regs;
@@ -40,7 +40,7 @@ static volatile unsigned long rip;
static void sigsegv_for_sigreturn_test(int sig, siginfo_t *info, void *ctx_void)
{
- ucontext_t *ctx = (ucontext_t*)ctx_void;
+ ucontext_t *ctx = (ucontext_t *)ctx_void;
if (rip != ctx->uc_mcontext.gregs[REG_RIP]) {
printf("[FAIL]\tRequested RIP=0x%lx but got RIP=0x%lx\n",
@@ -56,7 +56,7 @@ static void sigsegv_for_sigreturn_test(int sig, siginfo_t *info, void *ctx_void)
static void sigusr1(int sig, siginfo_t *info, void *ctx_void)
{
- ucontext_t *ctx = (ucontext_t*)ctx_void;
+ ucontext_t *ctx = (ucontext_t *)ctx_void;
memcpy(&initial_regs, &ctx->uc_mcontext.gregs, sizeof(gregset_t));
@@ -69,8 +69,6 @@ static void sigusr1(int sig, siginfo_t *info, void *ctx_void)
ctx->uc_mcontext.gregs[REG_R11]);
sethandler(SIGSEGV, sigsegv_for_sigreturn_test, SA_RESETHAND);
-
- return;
}
static void test_sigreturn_to(unsigned long ip)
@@ -84,7 +82,7 @@ static jmp_buf jmpbuf;
static void sigsegv_for_fallthrough(int sig, siginfo_t *info, void *ctx_void)
{
- ucontext_t *ctx = (ucontext_t*)ctx_void;
+ ucontext_t *ctx = (ucontext_t *)ctx_void;
if (rip != ctx->uc_mcontext.gregs[REG_RIP]) {
printf("[FAIL]\tExpected SIGSEGV at 0x%lx but got RIP=0x%lx\n",
@@ -130,7 +128,7 @@ static void test_syscall_fallthrough_to(unsigned long ip)
printf("[OK]\tWe survived\n");
}
-int main()
+int main(void)
{
/*
* When the kernel returns from a slow-path syscall, it will
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-01-11 21:01 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-11 14:39 [PATCH] selftests/x86: clean up sysret_rip coding style neogulmanpassingby
2026-01-11 16:18 ` Borislav Petkov
2026-01-11 21:01 ` [PATCH v2] " UYeol Jo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox