--- old/src/hotspot/share/gc/g1/g1Arguments.cpp 2018-06-14 14:58:24.246132787 +0200 +++ new/src/hotspot/share/gc/g1/g1Arguments.cpp 2018-06-14 14:58:23.673114815 +0200 @@ -54,9 +54,9 @@ } void G1Arguments::parse_verification_type(const char* type) { - if (strcmp(type, "young-only") == 0) { + if (strcmp(type, "young-normal") == 0) { G1HeapVerifier::enable_verification_type(G1HeapVerifier::G1VerifyYoungOnly); - } else if (strcmp(type, "initial-mark") == 0) { + } else if (strcmp(type, "concurrent-start") == 0) { G1HeapVerifier::enable_verification_type(G1HeapVerifier::G1VerifyInitialMark); } else if (strcmp(type, "mixed") == 0) { G1HeapVerifier::enable_verification_type(G1HeapVerifier::G1VerifyMixed); @@ -68,7 +68,7 @@ G1HeapVerifier::enable_verification_type(G1HeapVerifier::G1VerifyFull); } else { log_warning(gc, verify)("VerifyGCType: '%s' is unknown. Available types are: " - "young-only, initial-mark, mixed, remark, cleanup and full", type); + "young-normal, concurrent-start, mixed, remark, cleanup and full", type); } }