git: 81c47bfc700d - stable/14 - amd64/mp_machdep.c: style
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 05 Oct 2024 07:11:04 UTC
The branch stable/14 has been updated by kib:
URL: https://cgit.FreeBSD.org/src/commit/?id=81c47bfc700dbce884e015f88d629938aefb0f6b
commit 81c47bfc700dbce884e015f88d629938aefb0f6b
Author: Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2024-10-01 11:32:19 +0000
Commit: Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2024-10-05 07:08:53 +0000
amd64/mp_machdep.c: style
(cherry picked from commit c2fe7156e992a295756206f59c282b9e971b8c91)
---
sys/amd64/amd64/mp_machdep.c | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/sys/amd64/amd64/mp_machdep.c b/sys/amd64/amd64/mp_machdep.c
index 12abb8b6bf8b..00e99f9df192 100644
--- a/sys/amd64/amd64/mp_machdep.c
+++ b/sys/amd64/amd64/mp_machdep.c
@@ -102,16 +102,15 @@ void *bootpcpu;
extern u_int mptramp_la57;
extern u_int mptramp_nx;
-smp_targeted_tlb_shootdown_t smp_targeted_tlb_shootdown = &smp_targeted_tlb_shootdown_native;
+smp_targeted_tlb_shootdown_t smp_targeted_tlb_shootdown =
+ &smp_targeted_tlb_shootdown_native;
+
/*
* Local data and functions.
*/
static int start_ap(int apic_id, vm_paddr_t boot_address);
-void
-smp_targeted_tlb_shootdown_native(pmap_t pmap, vm_offset_t addr1, vm_offset_t addr2,
- smp_invl_cb_t curcpu_cb, enum invl_op_codes op);
/*
* Initialize the IPI handlers and start up the AP's.
*/
@@ -586,8 +585,8 @@ invl_scoreboard_slot(u_int cpu)
* completion.
*/
void
-smp_targeted_tlb_shootdown_native(pmap_t pmap, vm_offset_t addr1, vm_offset_t addr2,
- smp_invl_cb_t curcpu_cb, enum invl_op_codes op)
+smp_targeted_tlb_shootdown_native(pmap_t pmap, vm_offset_t addr1,
+ vm_offset_t addr2, smp_invl_cb_t curcpu_cb, enum invl_op_codes op)
{
cpuset_t mask;
uint32_t generation, *p_cpudone;