Hi,
Please review the code changes for https://bugs.openjdk.java.net/browse/JDK-8054326. Webrev Link: http://cr.openjdk.java.net/~csahu/8054326/ Bug Brief: In output of remset statistics "Max" is printing as 0k, which is confusing for user. Problem Identified : "Max" value is rounded to KB, which result in 0k, if the value is less than 1024B. Solution Proposed: If the value for "Max" is less than 1 KB (1024 B), print the value in bytes (i.e. 1023B.) else print the value in KB. Regards, Cheleswer