Page MenuHomeFreeBSD

Don't enable interrupts in init_secondary().
ClosedPublic

Authored by markj on Jan 3 2019, 9:37 PM.
Tags
None
Referenced Files
F112054930: D18738.diff
Wed, Mar 12, 4:30 AM
Unknown Object (File)
Thu, Mar 6, 6:02 PM
Unknown Object (File)
Sat, Mar 1, 3:45 PM
Unknown Object (File)
Feb 5 2025, 1:45 AM
Unknown Object (File)
Jan 21 2025, 3:43 PM
Unknown Object (File)
Jan 21 2025, 12:42 PM
Unknown Object (File)
Jan 7 2025, 2:12 AM
Unknown Object (File)
Dec 10 2024, 7:33 AM
Subscribers

Details

Summary

sched_throw() expects the caller to hold a spinlock section; see the
td_md initialization in cpu_fork(). This bug can cause a deadlock when
APs are started: statclock() fires before the thread lock acquired in
sched_throw() is released, and recurses on the thread lock.

Diff Detail

Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 21823
Build 21091: arc lint + arc unit

Event Timeline

jhb added inline comments.
sys/riscv/riscv/mp_machdep.c
231

Are interrupts enabled here at all? We really depend on them not being enabled on APs until after the first context switch.

This revision is now accepted and ready to land.Jan 3 2019, 10:38 PM
markj added inline comments.
sys/riscv/riscv/mp_machdep.c
231

Hmm, it was added here: https://svnweb.freebsd.org/changeset/base/335005

We boot in QEMU without the intr_disable(), though. I added code to read and print sstatus here, and SIE is disabled. So it seems safe to remove the intr_disable().

markj marked an inline comment as done.
  • Remove unneeded intr_disable() call.
This revision now requires review to proceed.Jan 3 2019, 10:52 PM
This revision was not accepted when it landed; it landed in state Needs Review.Jan 4 2019, 5:15 PM
This revision was automatically updated to reflect the committed changes.