RFR (S): 8155810: Bound the number of root region scan threads to the number of survivor regions

Stefan Johansson stefan.johansson at oracle.com
Tue May 10 14:37:54 UTC 2016


On 2016-05-10 13:30, Thomas Schatzl wrote:
> Hi all,
>
>    due to recent changes I had to do a minor one-line change:
>
> http://cr.openjdk.java.net/~tschatzl/8155810/webrev.1/
>
> in g1ConcurrentMark.cpp,
>
>   312 uint G1CMRootRegions::num_root_regions() const {
>   313   return _young_list->survivor_length();
>   314 }
>
> had to change to:
>
>   297 uint G1CMRootRegions::num_root_regions() const {
>   298   return (uint)_survivors->regions()->length();
>   299 }
>
> Please have a look asap.
Looks good,

StefanJ
> Thanks,
>    Thomas
>




More information about the hotspot-gc-dev mailing list