-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P3
-
Affects Version/s: 26, 27
-
Component/s: hotspot
-
b03
| Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
|---|---|---|---|---|---|---|
| JDK-8373927 | 26 | Serguei Spitsyn | P3 | Resolved | Fixed | b29 |
This crash is a regression introduced by JDK-8364343.
The suggested fix is:
diff --git a/src/hotspot/share/runtime/mountUnmountDisabler.cpp b/src/hotspot/share/runtime/mountUnmountDisabler.cpp
index 5bf00323f10..261bbfb9c18 100644
--- a/src/hotspot/share/runtime/mountUnmountDisabler.cpp
+++ b/src/hotspot/share/runtime/mountUnmountDisabler.cpp
@@ -367,7 +367,7 @@ MountUnmountDisabler::enable_transition_for_all() {
OrderAccess::release();
MonitorLocker ml(VThreadTransition_lock);
- if (exclusive_operation_ongoing()) {
+ if (_is_exclusive) {
set_exclusive_operation_ongoing(false);
}
dec_active_disablers();
The suggested fix is:
diff --git a/src/hotspot/share/runtime/mountUnmountDisabler.cpp b/src/hotspot/share/runtime/mountUnmountDisabler.cpp
index 5bf00323f10..261bbfb9c18 100644
--- a/src/hotspot/share/runtime/mountUnmountDisabler.cpp
+++ b/src/hotspot/share/runtime/mountUnmountDisabler.cpp
@@ -367,7 +367,7 @@ MountUnmountDisabler::enable_transition_for_all() {
OrderAccess::release();
MonitorLocker ml(VThreadTransition_lock);
- if (exclusive_operation_ongoing()) {
+ if (_is_exclusive) {
set_exclusive_operation_ongoing(false);
}
dec_active_disablers();
- backported by
-
JDK-8373927 assert(!is_vthread_transition_disabler()) failed: no suspend allowed for vthread transition disablers
-
- Resolved
-
- caused by
-
JDK-8364343 Virtual Thread transition management needs to be independent of JVM TI
-
- Resolved
-
- links to
-
Commit(jdk26)
openjdk/jdk/248519db
-
Commit(master)
openjdk/jdk/53ebcdbd
-
Review(jdk26)
openjdk/jdk/28860
-
Review(master)
openjdk/jdk/28805
(1 links to)