8195094: Fix type-O in "8159422: Very high Concurrent Mark mark stack contention"
authorgoetz
Tue, 16 Jan 2018 07:48:01 +0100
changeset 48532 a53f30471b2d
parent 48531 eb5a14ac1e42
child 48533 789efc16f4b1
8195094: Fix type-O in "8159422: Very high Concurrent Mark mark stack contention" Reviewed-by: tschatzl, dholmes Contributed-by: arno.zeller@sap.com
src/hotspot/share/memory/allocation.inline.hpp
--- a/src/hotspot/share/memory/allocation.inline.hpp	Tue Jan 16 12:38:21 2018 +0530
+++ b/src/hotspot/share/memory/allocation.inline.hpp	Tue Jan 16 07:48:01 2018 +0100
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -163,7 +163,7 @@
     return NULL;
   }
 
-  if (os::commit_memory(addr, size, !ExecMem, "Allocator (commit)")) {
+  if (os::commit_memory(addr, size, !ExecMem)) {
     return (E*)addr;
   } else {
     os::release_memory(addr, size);