Skip to content

Commit 6744eb2

Browse files
committedNov 20, 2019
8234379: ZGC: Do not resize TALBs unless -XX:ResizeTLAB is enabled
Reviewed-by: eosterlund, tschatzl
1 parent 7e42642 commit 6744eb2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎src/hotspot/share/gc/z/zThreadLocalAllocBuffer.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ void ZThreadLocalAllocBuffer::retire(Thread* thread) {
6969
ThreadLocalAllocStats* const stats = _stats->addr();
7070
thread->tlab().addresses_do(fixup_address);
7171
thread->tlab().retire(stats);
72-
thread->tlab().resize();
72+
if (ResizeTLAB) {
73+
thread->tlab().resize();
74+
}
7375
}
7476
}
7577

0 commit comments

Comments
 (0)
Please sign in to comment.