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)
Sun, Feb 9, 5:59 PM
Unknown Object (File)
Jan 21 2025, 4:30 PM
Unknown Object (File)
Jan 11 2025, 4:15 AM
Unknown Object (File)
Jan 10 2025, 8:38 PM
Unknown Object (File)
Dec 13 2024, 1:25 PM
Unknown Object (File)
Nov 25 2024, 9:28 AM
Unknown Object (File)
Nov 24 2024, 11:48 AM
Unknown Object (File)
Nov 18 2024, 3:04 AM
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.