8195094: Fix type-O in "8159422: Very high Concurrent Mark mark stack contention"
Reviewed-by: tschatzl, dholmes
Contributed-by: arno.zeller@sap.com
--- 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);