Skip to content

Commit 80db6e7

Browse files
committed
8339648: ZGC: Division by zero in rule_major_allocation_rate
Reviewed-by: aboldtch, lucy, tschatzl
1 parent 269cd38 commit 80db6e7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/hotspot/share/gc/z/zDirector.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,8 @@ static bool rule_major_allocation_rate(const ZDirectorStats& stats) {
488488

489489
// Calculate the GC cost for each reclaimed byte
490490
const double current_young_gc_time_per_bytes_freed = double(young_gc_time) / double(reclaimed_per_young_gc);
491-
const double current_old_gc_time_per_bytes_freed = double(old_gc_time) / double(reclaimed_per_old_gc);
491+
const double current_old_gc_time_per_bytes_freed = reclaimed_per_old_gc == 0 ? std::numeric_limits<double>::infinity()
492+
: (double(old_gc_time) / double(reclaimed_per_old_gc));
492493

493494
// Calculate extra time per young collection inflicted by *not* doing an
494495
// old collection that frees up memory in the old generation.

0 commit comments

Comments
 (0)