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
F135542878: D2123.diff
Mon, Nov 10, 4:34 PM
Unknown Object (File)
Tue, Nov 4, 4:21 AM
Unknown Object (File)
Mon, Nov 3, 12:08 AM
Unknown Object (File)
Sat, Oct 25, 2:52 PM
Unknown Object (File)
Thu, Oct 23, 4:42 AM
Unknown Object (File)
Thu, Oct 23, 4:42 AM
Unknown Object (File)
Thu, Oct 23, 12:20 AM
Unknown Object (File)
Wed, Oct 22, 8:44 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