diff options
author | jhb <jhb@FreeBSD.org> | 2001-02-22 02:18:32 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2001-02-22 02:18:32 +0000 |
commit | bfd047a3c936c2ea237d09f71e53f3b02aae1497 (patch) | |
tree | 4b98153f7f2c6e9e7c78153cbc3f699eb673ed87 /usr.sbin | |
parent | 0d396b87d337a6f2a1fea3ae75887fe04277c9ab (diff) | |
download | FreeBSD-src-bfd047a3c936c2ea237d09f71e53f3b02aae1497.zip FreeBSD-src-bfd047a3c936c2ea237d09f71e53f3b02aae1497.tar.gz |
Work around a race condition where an interrupt handler can be removed from
an interrupt thread while the interrupt thread is blocked on Giant waiting
to execute the interrupt handler being removed. The result was that the
intrhand structure would be free'd, and we would call 0xdeadc0de. The work
around is to check to see if the interrupt thread is idle when removing a
handler. If not, then we mark the interrupt handler as being dead using
the new IH_DEAD flag and don't remove it from the interrupt threads' list
of handlers. When the interrupt thread resumes, it will see a dead handler
while traversing the list of handlers and will remove the handler then.
Diffstat (limited to 'usr.sbin')
0 files changed, 0 insertions, 0 deletions