RFR: 8139424: SIGSEGV, Problematic frame: # V [libjvm.so+0xd0c0cc] void InstanceKlass::oop_oop_iterate_oop_maps_specialized<true, oopDesc*, MarkAndPushClosure>

Stefan Johansson stefan.johansson at oracle.com
Wed Nov 11 15:41:55 UTC 2015


Hi,

Please review this fix for:
https://bugs.openjdk.java.net/browse/JDK-8139424

Webrev:
http://cr.openjdk.java.net/~sjohanss/8139424/hotspot.00/

Summary:
The crash was caused by a faulty eager humongous reclaim. The reason for 
reclaiming a live humongous object was an overlooked remembered set 
entry when the object was treated as a candidate for humongous 
reclamation. If the remembered set was expanded during the previous GC, 
the code handling reclaim candidates would look at the old view of the 
remembered set and due to that miss some entries. This was caused by 
checking for eager reclaim candidates before calling cleanupHRRS, which 
takes care of updating the remembered sets to be ready for iteration.

The fix was to simply move the call to rem_set()->cleanupHRRS() to 
before register_humongous_regions_with_cset(), which is were we check 
for reclaim candidates.

I also added a test that provokes this and asserts when run with a 
fastdebug build, the test is not 100% deterministic and requires to be 
run with some special parameters set in the JTREG header. The test will 
never fail intermittently, and could possibly pass even though there are 
problems in the code. I still think it is worth adding, to avoid doing 
the same error again in the future.

Testing:
Failure was reproducable in 1-2 hours on the sparc-host where it 
occurred, and with this fix a 24 hour run was fine. The JTREG test also 
fails without the fix but passes when it is applied.

Thanks,
Stefan



More information about the hotspot-gc-dev mailing list