22 lines
1.0 KiB
Diff
22 lines
1.0 KiB
Diff
diff --git a/src/hotspot/share/gc/g1/g1RegionToSpaceMapper.hpp b/src/hotspot/share/gc/g1/g1RegionToSpaceMapper.hpp
|
|
index 6b396c8e3..7eddfd69c 100644
|
|
--- a/src/hotspot/share/gc/g1/g1RegionToSpaceMapper.hpp
|
|
+++ b/src/hotspot/share/gc/g1/g1RegionToSpaceMapper.hpp
|
|
@@ -25,7 +25,6 @@
|
|
#ifndef SHARE_VM_GC_G1_G1REGIONTOSPACEMAPPER_HPP
|
|
#define SHARE_VM_GC_G1_G1REGIONTOSPACEMAPPER_HPP
|
|
|
|
-#include "gc/g1/g1NUMA.hpp"
|
|
#include "gc/g1/g1PageBasedVirtualSpace.hpp"
|
|
#include "memory/allocation.hpp"
|
|
#include "utilities/debug.hpp"
|
|
@@ -73,7 +72,7 @@ class G1RegionToSpaceMapper : public CHeapObj<mtGC> {
|
|
return _commit_map.at(idx);
|
|
}
|
|
|
|
- virtual void commit_regions(uint start_idx, size_t num_regions = 1, WorkGang* pretouch_workers = NULL, uint node = G1NUMA::AnyNodeIndex) = 0;
|
|
+ virtual void commit_regions(uint start_idx, size_t num_regions = 1, WorkGang* pretouch_workers = NULL, uint node = UINT_MAX - 1) = 0;
|
|
virtual void uncommit_regions(uint start_idx, size_t num_regions = 1) = 0;
|
|
|
|
// Creates an appropriate G1RegionToSpaceMapper for the given parameters.
|