# HG changeset patch # User brutisso # Date 1369119020 -7200 # Node ID 28e53b8db94f9ae6cb5a0c4ec3261fbee9a84711 # Parent 10f759898d40050be1cc5fca0350bdd1053b11a1 7066063: CMS: "Conservation Principle" assert failed Summary: Add call to coalBirth() in CompactibleFreeListSpace::reset() Reviewed-by: ysr, jmasa diff -r 10f759898d40 -r 28e53b8db94f src/share/vm/gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.cpp --- a/src/share/vm/gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.cpp Mon May 20 10:44:33 2013 -0700 +++ b/src/share/vm/gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.cpp Tue May 21 08:50:20 2013 +0200 @@ -285,6 +285,7 @@ _bt.verify_not_unallocated((HeapWord*)fc, fc->size()); _indexedFreeList[mr.word_size()].return_chunk_at_head(fc); } + coalBirth(mr.word_size()); } _promoInfo.reset(); _smallLinearAllocBlock._ptr = NULL;