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)
Sat, Apr 20, 7:21 AM
Unknown Object (File)
Fri, Apr 19, 12:06 AM
Unknown Object (File)
Thu, Apr 18, 2:39 PM
Unknown Object (File)
Thu, Mar 28, 10:56 PM
Unknown Object (File)
Tue, Mar 26, 9:19 PM
Unknown Object (File)
Tue, Mar 26, 9:17 PM
Unknown Object (File)
Mar 5 2024, 6:46 PM
Unknown Object (File)
Jan 13 2024, 9:50 PM
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