--- a/hotspot/src/cpu/ppc/vm/vm_version_ppc.cpp Thu Sep 08 18:17:50 2016 -0400
+++ b/hotspot/src/cpu/ppc/vm/vm_version_ppc.cpp Thu Sep 01 16:47:53 2016 +0200
@@ -274,7 +274,14 @@
}
bool os_too_old = true;
#ifdef AIX
- if (os::Aix::os_version() >= 0x0701031e) { // at least AIX 7.1.3.30
+ // Actually, this is supported since AIX 7.1.. Unfortunately, this first
+ // contained bugs, so that it can only be enabled after AIX 7.1.3.30.
+ // The Java property os.version, which is used in RTM tests to decide
+ // whether the feature is available, only knows major and minor versions.
+ // We don't want to change this property, as user code might depend on it.
+ // So the tests can not check on subversion 3.30, and we only enable RTM
+ // with AIX 7.2.
+ if (os::Aix::os_version() >= 0x07020000) { // At least AIX 7.2.
os_too_old = false;
}
#endif