hotspot/src/share/vm/memory/metaspace.cpp
changeset 19990 310317f40ee6
parent 19989 0fc247fb59bc
child 19992 ecae893d6947
--- a/hotspot/src/share/vm/memory/metaspace.cpp	Thu Sep 12 10:15:54 2013 +0200
+++ b/hotspot/src/share/vm/memory/metaspace.cpp	Fri Sep 13 22:21:06 2013 +0200
@@ -737,9 +737,7 @@
     // MinChunkSize is a placeholder for the real minimum size JJJ
     size_t byte_size = word_size * BytesPerWord;
 
-    size_t byte_size_with_overhead = byte_size + Metablock::overhead();
-
-    size_t raw_bytes_size = MAX2(byte_size_with_overhead,
+    size_t raw_bytes_size = MAX2(byte_size,
                                  Metablock::min_block_byte_size());
     raw_bytes_size = ARENA_ALIGN(raw_bytes_size);
     size_t raw_word_size = raw_bytes_size / BytesPerWord;