mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
6723228: NUMA allocator: assert(lgrp_id != -1, "No lgrp_id set")
6723229: NUMA allocator: assert(lgrp_num > 0, "There should be at least one locality group") The fix takes care of the assertion triggered during TLAB resizing after reconfiguration. Also it now handles a defect in the topology graph, in which a single leaf node doesn't have memory. Reviewed-by: jmasa
This commit is contained in:
parent
e9e432633b
commit
1193f0f9db
4 changed files with 48 additions and 3 deletions
|
@ -58,6 +58,12 @@ class AdaptiveWeightedAverage : public CHeapObj {
|
|||
_average(0.0), _sample_count(0), _weight(weight), _last_sample(0.0) {
|
||||
}
|
||||
|
||||
void clear() {
|
||||
_average = 0;
|
||||
_sample_count = 0;
|
||||
_last_sample = 0;
|
||||
}
|
||||
|
||||
// Accessors
|
||||
float average() const { return _average; }
|
||||
unsigned weight() const { return _weight; }
|
||||
|
@ -115,6 +121,12 @@ class AdaptivePaddedAverage : public AdaptiveWeightedAverage {
|
|||
float deviation() const { return _deviation; }
|
||||
unsigned padding() const { return _padding; }
|
||||
|
||||
void clear() {
|
||||
AdaptiveWeightedAverage::clear();
|
||||
_padded_avg = 0;
|
||||
_deviation = 0;
|
||||
}
|
||||
|
||||
// Override
|
||||
void sample(float new_sample);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue