* [PATCH] x86/mm: fix the code style issue about "foo* bar"
@ 2022-11-29 9:25 korantwork
0 siblings, 0 replies; only message in thread
From: korantwork @ 2022-11-29 9:25 UTC (permalink / raw)
To: dave.hansen, luto; +Cc: x86, linux-kernel, kernel-janitors, Xinghui Li
From: Xinghui Li <korantli@tencent.com>
Fix the error:
'ERROR: "(foo*)" should be "(foo *)"
688: FILE: arch/x86/mm/fault.c:688:
+ call_on_stack(__this_cpu_ist_top_va(DF) - sizeof(void*),'
reported by checkpatch.pl.
Signed-off-by: Xinghui Li <korantli@tencent.com>
---
arch/x86/mm/fault.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/x86/mm/fault.c b/arch/x86/mm/fault.c
index 7b0d4ab894c8..3f014cdd85f1 100644
--- a/arch/x86/mm/fault.c
+++ b/arch/x86/mm/fault.c
@@ -685,7 +685,7 @@ page_fault_oops(struct pt_regs *regs, unsigned long error_code,
* and then double-fault, though, because we're likely to
* break the console driver and lose most of the stack dump.
*/
- call_on_stack(__this_cpu_ist_top_va(DF) - sizeof(void*),
+ call_on_stack(__this_cpu_ist_top_va(DF) - sizeof(void *),
handle_stack_overflow,
ASM_CALL_ARG3,
, [arg1] "r" (regs), [arg2] "r" (address), [arg3] "r" (&info));
--
2.38.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2022-11-29 9:25 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-29 9:25 [PATCH] x86/mm: fix the code style issue about "foo* bar" korantwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox