Skip to content

Commit c25e2fd

Browse files
committed
8230425: Shenandoah forces +UseNUMAInterleaving even after explicitly disabled
Reviewed-by: rkennke
1 parent 5110530 commit c25e2fd

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/hotspot/share/gc/shenandoah/shenandoahArguments.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,9 @@ void ShenandoahArguments::initialize() {
6060
}
6161

6262
// Enable NUMA by default. While Shenandoah is not NUMA-aware, enabling NUMA makes
63-
// storage allocation code NUMA-aware, and NUMA interleaving makes the storage
64-
// allocated in consistent manner (interleaving) to minimize run-to-run variance.
63+
// storage allocation code NUMA-aware.
6564
if (FLAG_IS_DEFAULT(UseNUMA)) {
6665
FLAG_SET_DEFAULT(UseNUMA, true);
67-
FLAG_SET_DEFAULT(UseNUMAInterleaving, true);
6866
}
6967

7068
// Set up default number of concurrent threads. We want to have cycles complete fast

0 commit comments

Comments
 (0)