--- old/src/hotspot/share/runtime/os.cpp 2017-11-03 01:09:29.786764685 -0700 +++ new/src/hotspot/share/runtime/os.cpp 2017-11-03 01:09:29.543766606 -0700 @@ -1678,9 +1678,9 @@ char* result = NULL; if (file_desc != -1) { - // Could have called pd_reserve_memory() followed by replace_existing_mapping_with_dax_file_mapping(), + // Could have called pd_reserve_memory() followed by replace_existing_mapping_with_file_mapping(), // but AIX may use SHM in which case its more trouble to detach the segment and remap memory to the file. - result = os::map_memory_to_dax_file(addr, bytes, file_desc); + result = os::map_memory_to_file(addr, bytes, file_desc); if (result != NULL) { MemTracker::record_virtual_memory_reserve_and_commit((address)result, bytes, CALLER_PC); }