Skip to content

Commit 3a4a94e

Browse files
committedNov 29, 2021
8277854: The upper bound of GCCardSizeInBytes should be limited to 512 for 32-bit platforms
Reviewed-by: tschatzl, mli
1 parent 825e633 commit 3a4a94e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/hotspot/share/gc/shared/gc_globals.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@
696696
\
697697
product(uint, GCCardSizeInBytes, 512, \
698698
"Card table entry size (in bytes) for card based collectors") \
699-
range(128, 1024) \
699+
range(128, NOT_LP64(512) LP64_ONLY(1024)) \
700700
constraint(GCCardSizeInBytesConstraintFunc,AtParse)
701701
// end of GC_FLAGS
702702

0 commit comments

Comments
 (0)
Failed to load comments.