-
Bug
-
Resolution: Fixed
-
P2
-
8
-
b48
-
Not verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8024214 | 8 | Poonam Bajaj Parhar | P2 | Closed | Fixed | b106 |
JDK-8033517 | 7u80 | Vladimir Kempik | P2 | Resolved | Fixed | b01 |
JDK-8034536 | 7u65 | Vladimir Kempik | P2 | Resolved | Fixed | b01 |
JDK-8031704 | 7u60 | Vladimir Kempik | P2 | Closed | Fixed | b05 |
JDK-8031705 | 6u81 | Vladimir Kempik | P2 | Closed | Fixed | b01 |
Caused by: java.lang.IllegalArgumentException: committed = 86482944 should be < max = 50331648
at java.lang.management.MemoryUsage.<init>(MemoryUsage.java:162)
at sun.management.MemoryImpl.getMemoryUsage0(Native Method)
at sun.management.MemoryImpl.getNonHeapMemoryUsage(MemoryImpl.java:75)
... 37 more
There is a bug in jmm_GetMemoryUsage here -- if a memory region does not define a maximum size, then the total_max is not updated:
if (u.max_size() == (size_t)-1) {
has_undefined_max_size = true;
}
if (!has_undefined_max_size) {
total_max += u.max_size();
}
But there memory region does define a committed size -- so the committed size is increased and the total_max size is not, and so the committed size ends up larger than the total_max size.
This occurs at least for the Metaspace region (pool->name() returns Metaspace) Which means, I suppose, that the metaspace region has a bug that it is not returning the maximum size? But also the management code should correctly report the maximum size in this instance as undefined rather than throwing an exception.
- backported by
-
JDK-8033517 Non heap memory size calculated incorrectly; IllegalArgumentException: committed = N should be < max
-
- Resolved
-
-
JDK-8034536 Non heap memory size calculated incorrectly; IllegalArgumentException: committed = N should be < max
-
- Resolved
-
-
JDK-8024214 Non heap memory size calculated incorrectly; IllegalArgumentException: committed = N should be < max
-
- Closed
-
-
JDK-8031704 Non heap memory size calculated incorrectly; IllegalArgumentException: committed = N should be < max
-
- Closed
-
-
JDK-8031705 Non heap memory size calculated incorrectly; IllegalArgumentException: committed = N should be < max
-
- Closed
-