Page MenuHomeFreeBSD

Use a reader count instead of holding lock.
ClosedPublic

Authored by sson on Mar 24 2015, 4:11 AM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, May 15, 5:26 PM
Unknown Object (File)
Apr 28 2024, 2:26 PM
Unknown Object (File)
Apr 26 2024, 4:58 PM
Unknown Object (File)
Apr 26 2024, 4:13 PM
Unknown Object (File)
Apr 26 2024, 6:38 AM
Unknown Object (File)
Apr 26 2024, 6:37 AM
Unknown Object (File)
Apr 20 2024, 7:21 AM
Unknown Object (File)
Apr 19 2024, 12:06 AM
Subscribers
None

Details

Reviewers
sbruno
Summary
This change uses a reader count instead of holding the mutex for the
interpreter list to avoid the problem of holding a non-sleep lock during
a page fault as reported by witness.  In addition, it consistently uses
memset()/memcpy() instead of bzero()/bcopy() except in the case where
bcopy() is required (i.e. overlapping copy).

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

sson retitled this revision from to Use a reader count instead of holding lock..
sson updated this object.
sson edited the test plan for this revision. (Show Details)
sbruno edited edge metadata.

Tested on head with WITNESS/INVARIANTS and all options in GENERIC. This resolves the witness enabled panic on HEAD.

This revision is now accepted and ready to land.Jun 4 2015, 8:43 PM

This was reverted after review. Will go back to D1971 as per suggestions to really try to use an sx_lock