--- old/src/os/windows/vm/os_windows.cpp 2016-04-11 14:40:07.974021866 +0200 +++ new/src/os/windows/vm/os_windows.cpp 2016-04-11 14:40:07.842017442 +0200 @@ -3006,7 +3006,7 @@ } #ifdef ASSERT if (should_inject_error) { - log_develop_info(pagesizes)("Reserving pages individually failed."); + log_develop_info(pagesize)("Reserving pages individually failed."); } #endif return NULL; @@ -3190,7 +3190,7 @@ // 1) the UseLargePagesIndividualAllocation flag is set (set by default on WS2003) // 2) NUMA Interleaving is enabled, in which case we use a different node for each page if (UseLargePagesIndividualAllocation || UseNUMAInterleaving) { - log_debug(pagesizes)("Reserving large pages individually."); + log_debug(pagesize)("Reserving large pages individually."); char * p_buf = allocate_pages_individually(bytes, addr, flags, prot, LargePagesIndividualAllocationInjectError); if (p_buf == NULL) { @@ -3208,7 +3208,7 @@ return p_buf; } else { - log_debug(pagesizes)("Reserving large pages in a single large chunk."); + log_debug(pagesize)("Reserving large pages in a single large chunk."); // normal policy just allocate it all at once DWORD flag = MEM_RESERVE | MEM_COMMIT | MEM_LARGE_PAGES;