Skip to content

Commit 9cd8e38

Browse files
author
Daniel D. Daugherty
committedDec 23, 2020
8257521: runtime/logging/MonitorInflationTest.java crashed in MonitorList::unlink_deflated
Reviewed-by: kbarrett
1 parent 61e5e39 commit 9cd8e38

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎src/hotspot/share/runtime/synchronizer.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ size_t MonitorList::unlink_deflated(Thread* self, LogStream* ls,
112112
ObjectMonitor* prev = NULL;
113113
ObjectMonitor* head = Atomic::load_acquire(&_head);
114114
ObjectMonitor* m = head;
115-
do {
115+
// The in-use list head can be NULL during the final audit.
116+
while (m != NULL) {
116117
if (m->is_being_async_deflated()) {
117118
// Find next live ObjectMonitor.
118119
ObjectMonitor* next = m;
@@ -154,7 +155,7 @@ size_t MonitorList::unlink_deflated(Thread* self, LogStream* ls,
154155
"unlinked_count", unlinked_count,
155156
ls, timer_p);
156157
}
157-
} while (m != NULL);
158+
}
158159
Atomic::sub(&_count, unlinked_count);
159160
return unlinked_count;
160161
}

0 commit comments

Comments
 (0)
Please sign in to comment.