Skip to content

Commit fddefba

Browse files
author
Man Cao
committedNov 14, 2019
8234127: BasicHashtable does not support small table_size
Reviewed-by: coleenp, jiangli
1 parent 368b6b5 commit fddefba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/hotspot/share/utilities/hashtable.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ template <MEMFLAGS F> BasicHashtableEntry<F>* BasicHashtable<F>::new_entry(unsig
6161

6262
if (entry == NULL) {
6363
if (_first_free_entry + _entry_size >= _end_block) {
64-
int block_size = MIN2(512, MAX2((int)_table_size / 2, (int)_number_of_entries));
64+
int block_size = MIN2(512, MAX3(2, (int)_table_size / 2, (int)_number_of_entries));
6565
int len = _entry_size * block_size;
6666
len = 1 << log2_int(len); // round down to power of 2
6767
assert(len >= _entry_size, "");

0 commit comments

Comments
 (0)
Please sign in to comment.