Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 5 Oct 2022 00:34:58 GMT
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 5ec288b5781b - stable/13 - amd64: Initialize IPI scoreboard earlier
Message-ID:  <202210050034.2950YwPg060161@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=5ec288b5781b67b9f2e7acf85abbe1d56974adeb

commit 5ec288b5781b67b9f2e7acf85abbe1d56974adeb
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2021-12-17 04:28:11 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2022-10-05 00:34:20 +0000

    amd64: Initialize IPI scoreboard earlier
    
    (cherry picked from commit 648fa3558c161a1d8564626d21047710c3fbfdf6)
---
 sys/amd64/amd64/mp_machdep.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/amd64/amd64/mp_machdep.c b/sys/amd64/amd64/mp_machdep.c
index 58f4a539c481..a13099981690 100644
--- a/sys/amd64/amd64/mp_machdep.c
+++ b/sys/amd64/amd64/mp_machdep.c
@@ -579,7 +579,7 @@ invl_scoreboard_init(void *arg __unused)
 		invl_op_pg = INVL_OP_PG;
 	}
 }
-SYSINIT(invl_ops, SI_SUB_SMP, SI_ORDER_FIRST, invl_scoreboard_init, NULL);
+SYSINIT(invl_ops, SI_SUB_SMP - 1, SI_ORDER_ANY, invl_scoreboard_init, NULL);
 
 static uint32_t *
 invl_scoreboard_getcpu(u_int cpu)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202210050034.2950YwPg060161>