8144949: TestOptionsWithRanges -XX:NUMAInterleaveGranularity=2147483648 crashes VM

Changed max range to 2G/8192G for NUMAInterleaveGranularity and removed constraint function

Reviewed-by: jwilhelm, jmasa
This commit is contained in:
Sangheon Kim 2015-12-16 22:06:52 -08:00
parent a22ed33318
commit 46cb143b5d
4 changed files with 5 additions and 12 deletions

View file

@ -688,8 +688,7 @@ public:
\
product(size_t, NUMAInterleaveGranularity, 2*M, \
"Granularity to use for NUMA interleaving on Windows OS") \
range(os::vm_allocation_granularity(), max_uintx) \
constraint(NUMAInterleaveGranularityConstraintFunc,AfterErgo) \
range(os::vm_allocation_granularity(), NOT_LP64(2*G) LP64_ONLY(8192*G)) \
\
product(bool, ForceNUMA, false, \
"Force NUMA optimizations on single-node/UMA systems") \