Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F110451434
D21135.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D21135.diff
View Options
Index: head/sys/kern/subr_witness.c
===================================================================
--- head/sys/kern/subr_witness.c
+++ head/sys/kern/subr_witness.c
@@ -1344,14 +1344,6 @@
* is allowed or has already been yelled about.
*/
- /*
- * If the lock order is blessed, just bail. We don't
- * look for other lock order violations though, which
- * may be a bug.
- */
- if (blessed(w, w1))
- goto out;
-
/* Bail if this violation is known */
if (w_rmatrix[w1->w_index][w->w_index] & WITNESS_REVERSAL)
goto out;
@@ -1361,6 +1353,14 @@
w_rmatrix[w->w_index][w1->w_index] |= WITNESS_REVERSAL;
w->w_reversed = w1->w_reversed = 1;
witness_increment_graph_generation();
+
+ /*
+ * If the lock order is blessed, bail before logging
+ * anything. We don't look for other lock order
+ * violations though, which may be a bug.
+ */
+ if (blessed(w, w1))
+ goto out;
mtx_unlock_spin(&w_mtx);
#ifdef WITNESS_NO_VNODE
@@ -2650,6 +2650,9 @@
&tmp_data2->wlod_stack);
}
mtx_unlock_spin(&w_mtx);
+
+ if (blessed(tmp_w1, tmp_w2))
+ continue;
sbuf_printf(sb,
"\nLock order reversal between \"%s\"(%s) and \"%s\"(%s)!\n",
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Feb 19, 3:37 PM (17 h, 46 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
16723253
Default Alt Text
D21135.diff (1 KB)
Attached To
Mode
D21135: Avoid calling blessed() more often than needed.
Attached
Detach File
Event Timeline
Log In to Comment