The branch stable/13 has been updated by markj:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=302738e4ff4913e8941441d57498cce995fd1181

commit 302738e4ff4913e8941441d57498cce995fd1181
Author:     Mark Johnston <[email protected]>
AuthorDate: 2022-01-06 14:07:45 +0000
Commit:     Mark Johnston <[email protected]>
CommitDate: 2022-01-06 14:07:45 +0000

    x86: Fix up the MFC of 08161fd3b207105847bdd1dd8729ea4cbda6e537
    
    This is a direct commit to stable/13.
---
 sys/x86/x86/tsc.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys/x86/x86/tsc.c b/sys/x86/x86/tsc.c
index 6f0ef697cb2f..3a1377ff4277 100644
--- a/sys/x86/x86/tsc.c
+++ b/sys/x86/x86/tsc.c
@@ -744,6 +744,7 @@ tsc_calibrate(void)
        freq_khz = tc->tc_frequency * (tsc_end - tsc_start) / (t_end - t_start);
 
        tsc_update_freq(freq_khz);
+calibrated:
        tc_init(&tsc_timecounter);
        set_cputicker(rdtsc, tsc_freq, !tsc_is_invariant);
 }

Reply via email to