-
Bug
-
Resolution: Unresolved
-
P3
-
None
-
None
-
+ uname -a
Linux iZbp1agd03p1kyhns4rcspZ 5.10.134-16.3.al8.aarch64 #1 SMP Tue Mar 26 18:51:35 CST 2024 aarch64 aarch64 aarch64 GNU/Linux
+ cat /etc/os-release
NAME="Alibaba Cloud Linux"
VERSION="3 (Soaring Falcon)"
ID="alinux"
ID_LIKE="rhel fedora centos anolis"
VERSION_ID="3"
UPDATE_ID="9.1"
PLATFORM_ID="platform:al8"
PRETTY_NAME="Alibaba Cloud Linux 3 (Soaring Falcon)"
ANSI_COLOR="0;31"
HOME_URL="https://www.aliyun.com/"+ free -h
total used free shared buff/cache available
Mem: 122Gi 1.2Gi 92Gi 9.0Mi 28Gi 120Gi
Swap: 0B 0B 0B
+ lscpu
+ head -n 25
Architecture: aarch64
Byte Order: Little Endian
CPU(s): 32
On-line CPU(s) list: 0-31
Thread(s) per core: 1
Core(s) per socket: 32
Socket(s): 1
NUMA node(s): 1
Vendor ID: ARM
BIOS Vendor ID: Alibaba Cloud
Model: 0
Model name: Neoverse-N2
BIOS Model name: virt-rhel7.6.0
Stepping: r0p0
CPU MHz: 3000.000
CPU max MHz: 3000.0000
CPU min MHz: 3000.0000
BogoMIPS: 100.00
L1d cache: 64K
L1i cache: 64K
L2 cache: 1024K
L3 cache: 65536K
NUMA node0 CPU(s): 0-31
Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm ssbs sb dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh
+ java -version
openjdk version "24" 2025-03-18
OpenJDK Runtime Environment (build 24)
OpenJDK 64-Bit Server VM (build 24, mixed mode, sharing)
+ java -Xinternalversion
OpenJDK 64-Bit Server VM (24) for linux-aarch64 JRE (24), built on 2024-09-05T12:10:44Z with gcc 10.2.1 20210130 (Red Hat 10.2.1-11)
+ git remote -v
origin git@github.com:openjdk/jdk.git (fetch)
origin git@github.com:openjdk/jdk.git (push)
+ git branch- master
+ git log -n 1
+ head -n 1
commit cb9f5c5791d17afbf72f7debe8013b77e45b3b56
+ git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: test/lib/jdk/test/lib/NetworkConfiguration.javano changes added to commit (use "git add" and/or "git commit -a")
{ }
+ git diff
diff --git a/test/lib/jdk/test/lib/NetworkConfiguration.java b/test/lib/jdk/test/lib/NetworkConfiguration.java
index 3532bb1a3ee..9feb2d5919c 100644
— a/test/lib/jdk/test/lib/NetworkConfiguration.java
+++ b/test/lib/jdk/test/lib/NetworkConfiguration.java
@@ -146,6 +146,13 @@ public static boolean isTestable(NetworkInterface nif)}
{ + return false; + }
+ if (Platform.isLinux()) {
+ String dName = nif.getDisplayName();
+ if (dName != null && dName.contains("docker"))+ }
+
if (Platform.isLinux()) {
String dName = nif.getDisplayName();
if (dName != null && dName.contains("docker")) {+ uname -a Linux iZbp1agd03p1kyhns4rcspZ 5.10.134-16.3.al8.aarch64 #1 SMP Tue Mar 26 18:51:35 CST 2024 aarch64 aarch64 aarch64 GNU/Linux + cat /etc/os-release NAME="Alibaba Cloud Linux" VERSION="3 (Soaring Falcon)" ID="alinux" ID_LIKE="rhel fedora centos anolis" VERSION_ID="3" UPDATE_ID="9.1" PLATFORM_ID="platform:al8" PRETTY_NAME="Alibaba Cloud Linux 3 (Soaring Falcon)" ANSI_COLOR="0;31" HOME_URL="https://www.aliyun.com/" + free -h total used free shared buff/cache available Mem: 122Gi 1.2Gi 92Gi 9.0Mi 28Gi 120Gi Swap: 0B 0B 0B + lscpu + head -n 25 Architecture: aarch64 Byte Order: Little Endian CPU(s): 32 On-line CPU(s) list: 0-31 Thread(s) per core: 1 Core(s) per socket: 32 Socket(s): 1 NUMA node(s): 1 Vendor ID: ARM BIOS Vendor ID: Alibaba Cloud Model: 0 Model name: Neoverse-N2 BIOS Model name: virt-rhel7.6.0 Stepping: r0p0 CPU MHz: 3000.000 CPU max MHz: 3000.0000 CPU min MHz: 3000.0000 BogoMIPS: 100.00 L1d cache: 64K L1i cache: 64K L2 cache: 1024K L3 cache: 65536K NUMA node0 CPU(s): 0-31 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm ssbs sb dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh + java -version openjdk version "24" 2025-03-18 OpenJDK Runtime Environment (build 24) OpenJDK 64-Bit Server VM (build 24, mixed mode, sharing) + java -Xinternalversion OpenJDK 64-Bit Server VM (24) for linux-aarch64 JRE (24), built on 2024-09-05T12:10:44Z with gcc 10.2.1 20210130 (Red Hat 10.2.1-11) + git remote -v origin git@github.com:openjdk/jdk.git (fetch) origin git@github.com:openjdk/jdk.git (push) + git branch master + git log -n 1 + head -n 1 commit cb9f5c5791d17afbf72f7debe8013b77e45b3b56 + git status On branch master Your branch is up to date with 'origin/master'. Changes not staged for commit: (use "git add <file>..." to update what will be committed) (use "git restore <file>..." to discard changes in working directory) modified: test/lib/jdk/test/lib/NetworkConfiguration.java no changes added to commit (use "git add" and/or "git commit -a") + git diff diff --git a/test/lib/jdk/test/lib/NetworkConfiguration.java b/test/lib/jdk/test/lib/NetworkConfiguration.java index 3532bb1a3ee..9feb2d5919c 100644 — a/test/lib/jdk/test/lib/NetworkConfiguration.java +++ b/test/lib/jdk/test/lib/NetworkConfiguration.java @@ -146,6 +146,13 @@ public static boolean isTestable(NetworkInterface nif) { } } + if (Platform.isLinux()) { + String dName = nif.getDisplayName(); + if (dName != null && dName.contains("docker")) { + return false; + } + } + if (Platform.isLinux()) { String dName = nif.getDisplayName(); if (dName != null && dName.contains("docker")) { - master
-
generic
-
linux
Error: A JNI error has occurred, please check your installation and try again
Exception in thread "main" java.lang.ExceptionInInitializerError
at java.base/sun.launcher.LauncherHelper.getLocalizedMessage(LauncherHelper.java:530)
at java.base/sun.launcher.LauncherHelper.abort(LauncherHelper.java:697)
at java.base/sun.launcher.LauncherHelper.loadMainClass(LauncherHelper.java:872)
at java.base/sun.launcher.LauncherHelper.checkAndLoadMain(LauncherHelper.java:736)
Caused by: java.util.MissingResourceException: Can't find bundle for base name sun.launcher.resources.launcher, locale en_US
at java.base/java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:2052)
at java.base/java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:1690)
at java.base/java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:1582)
at java.base/java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:1548)
at java.base/java.util.ResourceBundle.getBundle(ResourceBundle.java:858)
at java.base/sun.launcher.LauncherHelper$ResourceBundleHolder.<clinit>(LauncherHelper.java:123)
... 4 more
Caused by: java.lang.ClassCircularityError: java/util/concurrent/ConcurrentHashMap$ForwardingNode
at java.base/java.util.concurrent.ConcurrentHashMap.transfer(ConcurrentHashMap.java:2446)
at java.base/java.util.concurrent.ConcurrentHashMap.addCount(ConcurrentHashMap.java:2359)
at java.base/java.util.concurrent.ConcurrentHashMap.putVal(ConcurrentHashMap.java:1076)
at java.base/java.util.concurrent.ConcurrentHashMap.put(ConcurrentHashMap.java:1007)
at java.base/java.util.Properties.put(Properties.java:1347)
at java.base/java.util.Properties.load0(Properties.java:459)
at java.base/java.util.Properties.load(Properties.java:410)
at java.base/java.security.Security.loadProps(Security.java:157)
at java.base/java.security.Security.initialize(Security.java:103)
at java.base/java.security.Security.lambda$static$0(Security.java:84)
at java.base/java.security.AccessController.doPrivileged(AccessController.java:319)
at java.base/java.security.Security.<clinit>(Security.java:83)
at java.base/sun.security.util.SecurityProperties.getOverridableProperty(SecurityProperties.java:57)
at java.base/sun.security.util.SecurityProperties.privilegedGetOverridable(SecurityProperties.java:48)
at java.base/sun.security.util.SecurityProperties.includedInExceptions(SecurityProperties.java:72)
at java.base/sun.security.util.SecurityProperties.<clinit>(SecurityProperties.java:36)
at java.base/sun.security.util.FilePermCompat.<clinit>(FilePermCompat.java:43)
at java.base/java.security.AccessControlContext.<init>(AccessControlContext.java:270)
at java.base/java.security.AccessController.createWrapper(AccessController.java:649)
at java.base/java.security.AccessController.doPrivileged(AccessController.java:461)
at java.base/java.util.ResourceBundle$ResourceBundleProviderHelper.loadResourceBundle(ResourceBundle.java:3617)
at java.base/java.util.ResourceBundle.loadBundle(ResourceBundle.java:1844)
at java.base/java.util.ResourceBundle.findBundle(ResourceBundle.java:1775)
at java.base/java.util.ResourceBundle.findBundle(ResourceBundle.java:1729)
at java.base/java.util.ResourceBundle.findBundle(ResourceBundle.java:1729)
at java.base/java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:1663)
- relates to
-
JDK-8337331 crash: pinned virtual thread will lead to jvm crash when running with the javaagent option
- Resolved
- links to
-
Review(master) openjdk/jdk/20906