Skip to content

Commit

Permalink
Fixed log
Browse files Browse the repository at this point in the history
  • Loading branch information
robehn committed Jan 27, 2025
1 parent d7a645a commit 0b2e26c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotspot/os_cpu/linux_riscv/riscv_hwprobe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ void RiscvHwprobe::add_features_from_query_result() {
if (os::Linux::kernel_version_compare(major, minor, patch, 6, 8, 5) == -1) {
LogMessage(os) log;
if (log.is_info()) {
log.info("Linux kernels before 6.9 (current %ld.%ld) have a known bug when using Vector and signals.", major, minor);
log.info("Linux kernels before 6.8.5 (current %ld.%ld.%ld) have a known bug when using Vector and signals.", major, minor, patch);
log.info("Vector not enabled automatically via hwprobe, but can be turned on with -XX:+UseRVV.");
}
} else {
Expand Down

0 comments on commit 0b2e26c

Please sign in to comment.