Page MenuHomeFreeBSD

Don't trace threads that have interrupts disabled.
ClosedPublic

Authored by markj on Jul 31 2017, 1:12 AM.
Tags
None
Referenced Files
Unknown Object (File)
Feb 22 2024, 2:22 AM
Unknown Object (File)
Dec 5 2023, 10:44 AM
Unknown Object (File)
Nov 24 2023, 2:09 AM
Unknown Object (File)
Nov 15 2023, 2:28 PM
Unknown Object (File)
Nov 4 2023, 6:03 PM
Unknown Object (File)
Nov 4 2023, 3:25 PM
Unknown Object (File)
Oct 14 2023, 1:34 PM
Unknown Object (File)
Oct 7 2023, 9:47 PM
Subscribers
None

Details

Summary

The register file of such a thread is in an indeterminate state, so we
shouldn't assume that the frame pointer is valid. In particular, we may
be in the middle of restoring host registers after a vmexit.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

markj added reviewers: jhb, kib.

This is fine, but then you do not need NMI.

This revision is now accepted and ready to land.Jul 31 2017, 7:20 AM
In D11787#244481, @kib wrote:

This is fine, but then you do not need NMI.

We use an NMI to avoid to avoid a deadlock: the case where the target thread holds a spinlock and thus has interrupts disabled, and is blocked on the thread lock held by the stack_save_td_running() caller.

This revision was automatically updated to reflect the committed changes.