Skip to content

Commit a1ab377

Browse files
fthevenettstuefe
authored andcommittedJun 7, 2023
8309550: jdk.jfr.internal.Utils::formatDataAmount method should gracefully handle amounts equal to Long.MIN_VALUE
Reviewed-by: stuefe, mgronlun
1 parent c49129f commit a1ab377

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎src/jdk.jfr/share/classes/jdk/jfr/internal/Utils.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ private static enum TimespanUnit {
121121
}
122122
}
123123

124-
// Tjis method can't handle Long.MIN_VALUE because absolute value is negative
124+
// handle Long.MIN_VALUE as a special case since its absolute value is negative
125125
private static String formatDataAmount(String formatter, long amount) {
126-
int exp = (int) (Math.log(Math.abs(amount)) / Math.log(1024));
126+
int exp = (amount == Long.MIN_VALUE) ? 6 : (int) (Math.log(Math.abs(amount)) / Math.log(1024));
127127
char unitPrefix = "kMGTPE".charAt(exp - 1);
128128
return String.format(formatter, amount / Math.pow(1024, exp), unitPrefix);
129129
}

‎src/jdk.jfr/share/classes/jdk/jfr/internal/util/ValueFormatter.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,9 @@ public static String formatClass(RecordedClass clazz) {
146146
return name;
147147
}
148148

149-
// Tjis method can't handle Long.MIN_VALUE because absolute value is negative
149+
// handle Long.MIN_VALUE as a special case since its absolute value is negative
150150
private static String formatDataAmount(String formatter, long amount) {
151-
int exp = (int) (Math.log(Math.abs(amount)) / Math.log(1024));
151+
int exp = (amount == Long.MIN_VALUE) ? 6 : (int) (Math.log(Math.abs(amount)) / Math.log(1024));
152152
char unitPrefix = "kMGTPE".charAt(exp - 1);
153153
return String.format(formatter, amount / Math.pow(1024, exp), unitPrefix);
154154
}

0 commit comments

Comments
 (0)
Please sign in to comment.